mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 07:21:05 +00:00
7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
htmx.defineExtension('ajax-header', {
|
|
onEvent: function (name, evt) {
|
|
if (name === "configRequest.htmx") {
|
|
evt.detail.headers['X-Requested-With'] = 'XMLHttpRequest';
|
|
}
|
|
}
|
|
}); |