mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-29 22:11:22 +00:00
12 lines
289 B
JavaScript
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"
|
|
}
|
|
}
|
|
});
|