-
+
@@ -35,7 +51,6 @@
-
diff --git a/js/all.js b/js/all.js
index 4efbbf4f..6a9fe1bf 100644
--- a/js/all.js
+++ b/js/all.js
@@ -38,6 +38,25 @@ function getCookie(cname) {
return "";
}
+function panicMode() {
+ if ($("#panicmode").length > 0) {
+ panicurl = getCookie("panicurl")
+ if (panicurl == "") {
+ panicurl = "https://google.com"
+ }
+ $("#panicmode").prop({href: panicurl})
+ }
+ const pressed = [];
+ const secretCode = 'safemode';
+ window.addEventListener('keyup', (e) => {
+ pressed.push(e.key);
+ pressed.splice(-secretCode.length - 1 , pressed.length - secretCode.length);
+ if (pressed.join('').includes(secretCode)) {
+ window.location.href = panicurl;
+ }
+ });
+}
document.addEventListener("DOMContentLoaded", function() {
setCloak();
+ panicMode();
});
\ No newline at end of file
diff --git a/ovo/index.html b/ovo/index.html
index f7f9a634..6c647bb9 100644
--- a/ovo/index.html
+++ b/ovo/index.html
@@ -1,6 +1,7 @@
+