speedtech-website/themes/lean/static/js/htmx/ext/debug.js
2025-05-14 18:03:13 +02:00

11 lines
289 B
JavaScript

htmx.defineExtension('debug', {
onEvent: function (name, evt) {
if (console.debug) {
console.debug(name, evt);
} else if (console) {
console.log("DEBUG:", name, evt);
} else {
throw "NO CONSOLE SUPPORTED"
}
}
});