speedtech-website/themes/lean/static/js/htmx/ext/ajax-header.js
2025-05-14 18:03:13 +02: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';
}
}
});