mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-30 06:21:19 +00:00

Before this commit, the content that were swapped by an extension via `handleSwap` was not handled by htmx: elemtents with `hx-` attributes, scripts, no `load.htmx` event... With this commit, if the `handleSwap` command returns an array of newly added elements (only the first level), then they will be handled by htmx like it's done for internal swap. To not break existing extensions, `handleSwap` can still return `true` to tell that the swap was handled, assuming than there is no new elements to handle. A new test was added with a button that, when clicked, loads a text and a span with `hx-trigger=load`, both handled by an extension. This commit allows this span to be loaded. The return of the `morphdom-swap` extension was updated to return the target element, even if unchanged, to let htmx check in the maybe new content that there is something new to handle. This is tested in a new test.