X-Git-Url: http://git.scottworley.com/reliable-chat/blobdiff_plain/520c21fdb6211574d467ec2bdc79c4d717721c51..591b51678a352ec65de07c3f4dc79f63156ca605:/webclient/rc.html diff --git a/webclient/rc.html b/webclient/rc.html index 8d1c84a..632956b 100644 --- a/webclient/rc.html +++ b/webclient/rc.html @@ -152,7 +152,6 @@ var messages = JSON.parse(rtxt); if (messages != null) { rcreceivemessages(server, messages); - window.parent.postMessage(rtxt, "*"); delay = 40; if (messages.length >= 1 && "Time" in messages[messages.length-1]) { since[server] = messages[messages.length-1]["Time"]; @@ -180,9 +179,6 @@ status_indicator.setAttribute("class", "sad"); document.getElementById("status").appendChild(status_indicator); } - if (rcnick() == 'anonymous') { - rcaddmessagetohistory("-!- Set your nick with /nick"); - } } function rcsend(d, message) { @@ -229,11 +225,6 @@ // Say the message var d = rcaddmessagetohistory(message); rcsend(d, message); - - // Remind people to set their nick - if (rcnick() == 'anonymous') { - rcaddmessagetohistory("-!- Set your nick with /nick"); - } } } //-->