mirror of
https://github.com/ae-utbm/sith.git
synced 2025-06-29 06:35:18 +00:00
13 lines
308 B
JavaScript
13 lines
308 B
JavaScript
import htmx from "htmx.org";
|
|
import "htmx-ext-alpine-morph";
|
|
|
|
document.body.addEventListener("htmx:beforeRequest", (event) => {
|
|
event.target.ariaBusy = true;
|
|
});
|
|
|
|
document.body.addEventListener("htmx:afterRequest", (event) => {
|
|
event.originalTarget.ariaBusy = null;
|
|
});
|
|
|
|
Object.assign(window, { htmx });
|