summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authors1n <[email protected]>2019-11-19 13:40:24 -0800
committerGitHub <[email protected]>2019-11-19 13:40:24 -0800
commita794c0f28021cea2c23d998dd3457ed1522396e5 (patch)
tree0cdd41760e31362ff2a67aa8dcfa1355657aa48e
parentadd cheats state (diff)
downloads1n.pw-admin-a794c0f28021cea2c23d998dd3457ed1522396e5.tar.xz
s1n.pw-admin-a794c0f28021cea2c23d998dd3457ed1522396e5.zip
remove scrolling title and add alternate title
-rw-r--r--js/app.js15
1 files changed, 1 insertions, 14 deletions
diff --git a/js/app.js b/js/app.js
index 6aabb14..8491533 100644
--- a/js/app.js
+++ b/js/app.js
@@ -140,20 +140,7 @@ function activateCheats() {
</div>
`;
- // SCROLLING TITLE
- var space = " ";
- var speed = "60";
- var pos = 0;
- var msg = "// s1n.ical // Landing Page ";
-
- function Scroll() {
- document.title = msg.substring(pos, msg.length) + space + msg.substring(0, pos);
- pos++;
- if (pos > msg.length) pos = 0;
- window.setTimeout("Scroll()", speed);
- }
-
- Scroll();
+ document.title = "// s1n.ical // Landing Page //"
CheatsState = true;
}