=================================================================== RCS file: /cvs/cvs/draft/form.min.js,v retrieving revision 1.99 retrieving revision 1.102 diff -u -p -r1.99 -r1.102 --- draft/form.min.js 2024/04/01 19:04:36 1.99 +++ draft/form.min.js 2024/04/02 07:18:10 1.102 @@ -64,7 +64,6 @@ async function sendData() { callback: function(token) { const data = JSON.stringify({"add": mail, "sub": subj, "msg": mess, "tok": token}); info.textContent="Sending..."; -// console.log(data); fetch("/feedbk/", { headers: { "Content-Type": "application/json" }, credentials: "same-origin", @@ -73,7 +72,7 @@ async function sendData() { body: data }) .then(response => response.json()) - .then(json => info.textContent=parseString(json['msg'])) + .then(json => info.textContent=json['msg']) .then(turnstile.remove()); } });