debug.js 250 B

1234567891011
  1. htmx.defineExtension('debug', {
  2. onEvent: function (name, evt) {
  3. if (console.debug) {
  4. console.debug(name, evt);
  5. } else if (console) {
  6. console.log("DEBUG:", name, evt);
  7. } else {
  8. throw "NO CONSOLE SUPPORTED"
  9. }
  10. }
  11. });