Sascha Woo
Sascha Woo
If you have two or more store-modules e.g. JPA and Elasticsearch in one project and for each of them you have a `UserRepository` with a custom fragment `CustomizedUserRepository` and an...
The CAS client (4.0.0-SNAPSHOT) has just been updated to JDK 17 + Jakarta EE. https://github.com/apereo/java-cas-client/commit/496adb1cf6bcc4ec55e7911c5eb5b75b5325bdf6
This adds a minimal build system based on [gulp.js](https://gulpjs.com/) to add a UMD wrapper, minify and gzip the source files, including all extensions. Related issue #1469
As discussed in #1469, when using htmx in a module environment, some internal extensions, such as `preload`, do not work properly. This is because htmx initializes itself on DOM ready,...
This adds a configuration option to enable/disable scrolling up after swapping a boosted link or form. Related discussion https://github.com/bigskysoftware/htmx/issues/407 @David-Guillot you have requested something like that in https://github.com/bigskysoftware/htmx/issues/407#issuecomment-876543782
This makes the swap style `innerHTML`, `outerHTML` etc. in `hx-swap` optional and improves the handling of unknown values. @David-Guillot you have requested something like that in https://github.com/bigskysoftware/htmx/issues/407#issuecomment-876543782
As the title says, this PR adds support to cancel an event also with `preventDefault()` within `onEvent` of an extension.
Unlike `hx-trigger`, `hx-on` does not support event names that contain dots. ```html ``` Instead htmx throws a SyntaxError: ``` Uncaught SyntaxError: Unexpected token ':' ```
At the moment htmx does not consider changes to the `href`, `action` and `method` attributes for boosted elements at runtime, nor does it consider changes to the hx-verb attributes (`hx-get`,...
This adds a new event `htmx:beforeHistoryUpdate` that is triggered right before the history is updated. It can be used to modify the `path` or `type` used to update the history.