diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:47 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:47 +0200 |
| commit | 2860b03f00e48264ed15c132ad90b240ebe6070b (patch) | |
| tree | 09ed88e28d4a83eb2b1cb17c2d424ba6467292f7 /html/stream.html | |
| parent | eab0b1c2d649fa16707b24cd2a91f195078167b0 (diff) | |
tagging ychat-0.7.9.5ychat-0.7.9.5
Diffstat (limited to 'html/stream.html')
| -rw-r--r--[-rwxr-xr-x] | html/stream.html | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/html/stream.html b/html/stream.html index db4c05c..ed08a23 100755..100644 --- a/html/stream.html +++ b/html/stream.html @@ -8,32 +8,31 @@ <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> -autoScroll(); +<h1>Engine: %%ychat.version%%</h2> +<script language="JavaScript"> + autoscroll(); </script> - Welcome to yChat %%nick%%! + Welcome to the chat, %%nick%%! <br> <br> |
