mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 07:21:05 +00:00
12 lines
383 B
JavaScript
12 lines
383 B
JavaScript
htmx.defineExtension('method-override', {
|
|
onEvent: function (name, evt) {
|
|
if (name === "configRequest.htmx") {
|
|
var method = evt.detail.verb;
|
|
if (method !== "get" || method !== "post") {
|
|
evt.detail.headers['X-HTTP-Method-Override'] = method.toUpperCase();
|
|
evt.detail.verb = "post";
|
|
}
|
|
}
|
|
}
|
|
});
|