diff options
| author | s1n <[email protected]> | 2019-11-19 13:40:24 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-11-19 13:40:24 -0800 |
| commit | a794c0f28021cea2c23d998dd3457ed1522396e5 (patch) | |
| tree | 0cdd41760e31362ff2a67aa8dcfa1355657aa48e /js | |
| parent | add cheats state (diff) | |
| download | s1n.pw-admin-a794c0f28021cea2c23d998dd3457ed1522396e5.tar.xz s1n.pw-admin-a794c0f28021cea2c23d998dd3457ed1522396e5.zip | |
remove scrolling title and add alternate title
Diffstat (limited to 'js')
| -rw-r--r-- | js/app.js | 15 |
1 files changed, 1 insertions, 14 deletions
@@ -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;
}
|