diff options
Diffstat (limited to 'js/app.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;
}
|