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