Browse Source

had to update a js file

AETH-erial 6 months ago
parent
commit
48cd169462
1 changed files with 12 additions and 1 deletions
  1. 12 1
      html/htmx/json-enc.js

+ 12 - 1
html/htmx/json-enc.js

@@ -1 +1,12 @@
-Found. Redirecting to /htmx.org@1.9.10/dist/ext/json-enc.js
+htmx.defineExtension('json-enc', {
+    onEvent: function (name, evt) {
+        if (name === "htmx:configRequest") {
+            evt.detail.headers['Content-Type'] = "application/json";
+        }
+    },
+    
+    encodeParameters : function(xhr, parameters, elt) {
+        xhr.overrideMimeType('text/json');
+        return (JSON.stringify(parameters));
+    }
+});