htmx/dist/ext/debug.js
2020-05-22 21:50:01 -07:00

12 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"
}
}
});