1 | htmx.defineExtension('json-enc', {
|
2 | onEvent: function (name, evt) {
|
3 | if (name === "htmx:configRequest") {
|
4 | evt.detail.headers['Content-Type'] = "application/json";
|
5 | }
|
6 | },
|
7 |
|
8 | encodeParameters : function(xhr, parameters, elt) {
|
9 | xhr.overrideMimeType('text/json');
|
10 | return (JSON.stringify(parameters));
|
11 | }
|
12 | }); |
\ | No newline at end of file |