Änderungen von Dokument FORMCYCLE Hilfe


Von Version 13.24
bearbeitet von gru
am 08.09.2025, 13:24
Änderungskommentar: Es gibt keinen Kommentar für diese Version
Auf Version 13.27
bearbeitet von gru
am 08.09.2025, 13:29
Änderungskommentar: Es gibt keinen Kommentar für diese Version

Zusammenfassung

Details

Seiteneigenschaften
Inhalt
... ... @@ -987,7 +987,11 @@
987 987   console.log("cookie got",dialogv8);
988 988   if (dialogv8 != "") {
989 989   console.log("Cookie found " + dialogv8);
990 - return false;
990 + if (dialogv8 == "true") {
991 + return true;
992 + } else {
993 + return false;
994 + }
991 991   }
992 992   return null;
993 993  }
... ... @@ -996,12 +996,10 @@
996 996   window.onload = function() {
997 997   let cookieValue = checkCookie();
998 998   console.log("checkCookie",cookieValue);
999 - if (0 && cookieValue != null) {
1000 - console.log("cookieValue",cookieValue);
1001 - } else if (0) {
1002 - window.location.href = "https://help8.formcycle.eu/support/home";
1003 - } else {
1003 + if (cookieValue == null) {
1004 1004   document.getElementById("overlayv8").style.display = "flex";
1005 + } else if (cookieValue == true) {
1006 + window.location.href = "https://help8.formcycle.eu/support/home";
1005 1005   }
1006 1006   };
1007 1007