diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:41 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:41 +0200 |
| commit | 520f54d6219b7c625b4e07463ac393e6982ddab6 (patch) | |
| tree | 74b4483786b3842b1a0384fd33deb7483276bea1 /html/stream.html | |
| parent | ae4e87df37ed8904de92c7cf2f3a11128cda2a21 (diff) | |
tagging ychat-0.7.1ychat-0.7.1
Diffstat (limited to 'html/stream.html')
| -rwxr-xr-x | html/stream.html | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/html/stream.html b/html/stream.html index 5bbdb43..493e9d3 100755 --- a/html/stream.html +++ b/html/stream.html @@ -8,27 +8,29 @@ <link rel=stylesheet href="style.css" type=text/css> <script language="JavaScript"> var scrolling; - var ison; - function autoscroll() + var isOn; + function autoScroll() { - if(!ison){ + if(!isOn) + { scrolling = window.setInterval("window.scroll(1,1606682)",70); - ison = true; + isOn = true; } } - function stopscroll() + + function stopScroll() { - if(ison) + if(isOn) { - window.clearInterval(scrolling); - ison = false; + window.clearInterval(scrolling); + isOn=false; } } </script> </head> -<body class="stream"> -<script language="JavaScript"> - autoscroll(); +<body bgcolor=#000000 text=#ffffff> +<script> +autoScroll(); </script> Welcome to yChat %%nick%%! |
