speedtech-website/public/js/htmx/ext/ajax-header.js
2025-12-12 18:05:59 +01:00

7 lines
No EOL
209 B
JavaScript

htmx.defineExtension('ajax-header', {
onEvent: function (name, evt) {
if (name === "htmx:configRequest") {
evt.detail.headers['X-Requested-With'] = 'XMLHttpRequest';
}
}
});