blob: 861ee743cb97cb1f7b9c31c17954fb130e4926b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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"
}
}
});
|