Files
packager/rust/js/app.js

12 lines
265 B
JavaScript
Raw Normal View History

2023-08-29 21:33:59 +02:00
window.onload = function() {
document.body.addEventListener('htmx:responseError', function(evt) {
2023-08-29 21:33:59 +02:00
console.log(evt.detail);
2023-08-29 21:33:59 +02:00
});
2023-08-29 21:33:59 +02:00
document.dispatchEvent(new Event("loaded"));
2023-08-29 21:33:59 +02:00
};
2023-08-29 21:33:59 +02:00
function is_positive_integer(val) {
return /^\d+$/.test(val);
}