summaryrefslogtreecommitdiff
path: root/html/input.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/input.html')
-rw-r--r--[-rwxr-xr-x]html/input.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/html/input.html b/html/input.html
index a06ae78..31ed9fe 100755..100644
--- a/html/input.html
+++ b/html/input.html
@@ -10,6 +10,7 @@
<!--
function delout()
{
+ document.input.message.value = document.input.message.value.replace(/&/g, '\\AND');
document.input.submit();
document.input.message.value = "";
document.input.message.focus();
@@ -25,6 +26,13 @@
var top = (screen.availHeight-height)/2;
var win = window.open(site,"_blank","width="+width+",height="+height+",left="+left+",top="+top+",scrollbars=yes");
}
+ function chgscroll(f)
+ {
+ if(f.checked)
+ parent.stream.autoscroll();
+ else
+ parent.stream.stopscroll();
+ }
//-->
</script>
</head>
@@ -39,8 +47,11 @@
<a href='#' class="fancy" onclick="javascript:popup('colors.html?event=colors&tmpid=%%tmpid%%', 600, 480)">Colors</a>
<a href='#' class="fancy" onclick="javascript:popup('options.html?event=options&tmpid=%%tmpid%%', 600, 480)">Options</a>
<a href='#' class="fancy" onclick="javascript:popup('help.html?event=help&tmpid=%%tmpid%%', 600, 480)">Help</a>
+ <a href='#' class="fancy" onclick="javascript:popup('loggedin.html?event=loggedin&tmpid=%%tmpid%%', 600, 480)">Users</a>
<a href='#' class="fancy" onclick="javascript:popup('admin.html?event=admin&tmpid=%%tmpid%%', 600, 480)">Admin</a>
<a href='input.html?event=input&tmpid=%%tmpid%%&message=%2Fq' class="fancy" target='blank'>Logout</a>
+ Scrolling:
+ <input type="checkbox" name="scroll" checked onClick="chgscroll(this);">
</div>
<input type="hidden" name="event" value="input">
<input type="hidden" name="tmpid" value="%%tmpid%%">