Gallery-Archivist/archivist/static/libs/htmx/debug.js

12 lines
289 B
JavaScript
Raw Normal View History

2024-06-16 18:43:16 +00:00
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"
}
}
});