2024-09-13 01:31:18 +00:00
|
|
|
import htmx from "htmx.org";
|
2024-09-12 17:15:17 +00:00
|
|
|
|
|
|
|
|
htmx.defineExtension("debug", {
|
2024-09-13 01:31:18 +00:00
|
|
|
// @ts-ignore
|
2024-09-12 17:15:17 +00:00
|
|
|
onEvent: function (name, evt) {
|
|
|
|
|
if (console.debug) {
|
2024-09-30 21:05:06 +00:00
|
|
|
console.debug(name, evt);
|
2024-09-12 17:15:17 +00:00
|
|
|
} else if (console) {
|
2024-09-30 21:05:06 +00:00
|
|
|
console.log("DEBUG:", name, evt);
|
2024-09-12 17:15:17 +00:00
|
|
|
} else {
|
|
|
|
|
// noop
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
});
|