message = "<" + rcnick() + "> " + input;
}
+ // /me support
+ var message;
+ var re = /^\/me (.*)/;
+ var match = re.exec(input);
+ var inputme = input.substring(4);
+ if (match) {
+ message = "* " + rcnick() + " " + inputme;
+ } else {
+ message = "<" + rcnick() + "> " + input;
+ }
+
// Remind people to set their nick
if (rcnick() == 'anonymous') {
rcaddmessagetohistory("-!- Set your nick with /nick");
<tr><td id="history"></td></tr>
<tr><td id="status"> </td></tr>
<tr><td><form name="input" onsubmit="return false" autocomplete="off">
- <input id="say" onkeydown="return rckeydown(event)" autocomplete="off"></input>
+ <input id="say" onkeydown="return rckeydown(event)" autocomplete="off" autofocus="autofocus"></input>
</form></td></tr>
</table>
</body>