Änderungen von Dokument FORMCYCLE Hilfe


Von Version 13.23
bearbeitet von gru
am 08.09.2025, 13:22
Änderungskommentar: Es gibt keinen Kommentar für diese Version
Auf Version 13.20
bearbeitet von gru
am 08.09.2025, 13:18
Änderungskommentar: Es gibt keinen Kommentar für diese Version

Zusammenfassung

Details

Seiteneigenschaften
Inhalt
... ... @@ -982,8 +982,7 @@
982 982  }
983 983  
984 984  function checkCookie() {
985 - let dialogv8 = getCookie("dialogv8");
986 - console.log("cookie got",dialogv8);
985 + let user = getCookie("dialogv8");
987 987   if (dialogv8 != "") {
988 988   console.log("Cookie found " + dialogv8);
989 989   return false;
... ... @@ -997,8 +997,6 @@
997 997   console.log("checkCookie",cookieValue);
998 998   if (0 && cookieValue != null) {
999 999   console.log("cookieValue",cookieValue);
1000 - } else if (0) {
1001 - window.location.href = "https://help8.formcycle.eu/support/home";
1002 1002   } else {
1003 1003   document.getElementById("overlayv8").style.display = "flex";
1004 1004   }
... ... @@ -1007,7 +1007,7 @@
1007 1007   // Redirect on continue
1008 1008   document.getElementById("continueBtn").onclick = function() {
1009 1009   window.location.href = "https://help8.formcycle.eu/support/home";
1010 - if (document.querySelector('INPUT[name="dialogv8cb"]').checked) {
1007 + if ($('[INPUT name="dialogv8cb"]').val() == "true") {
1011 1011   setCookie("dialogv8", "true", 90);
1012 1012   }
1013 1013   };
... ... @@ -1015,7 +1015,8 @@
1015 1015   // Close overlay on abort
1016 1016   document.getElementById("abortBtn").onclick = function() {
1017 1017   document.getElementById("overlayv8").style.display = "none";
1018 - if (document.querySelector('INPUT[name="dialogv8cb"]').checked) {
1015 + console.log("debug cb",$('[INPUT name="dialogv8cb"]').val());
1016 + if ($('[INPUT name="dialogv8cb"]').val() == "true") {
1019 1019   setCookie("dialogv8", "false", 90);
1020 1020   }
1021 1021   };