Parcourir la source

had to update a js file

AETH-erial il y a 6 mois
Parent
commit
48cd169462
1 fichiers modifiés avec 12 ajouts et 1 suppressions
  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));
+    }
+});