Paweł Wilk

Results 5 comments of Paweł Wilk

Many people are using hooks already so I'm wondering if it shouldn't be additional reader, like `froms` or `all_from`. Or let's make use of `method_missing` on decorated array and fall...

Something like that should do: ``` ruby class PersonsProxy < Array Person.public_instance_methods(false).each do |meth| define_method(meth) do |*args| first and first.public_send(meth, *args) end end def to_s first.to_s end end ``` Just...

Let me know, if this is still an issue. Some config setting for that could be added in such case.

Pull request: https://github.com/bigskysoftware/htmx/pull/1625 After changes will be merged the way to enable this functionality is going to be by adding: ```html ``` or by setting the `htmx.config.responseTargetPadX` to `true` in...