]> git.scottworley.com Git - reliable-chat/blobdiff - webclient/rc.html
CSS class for local messages
[reliable-chat] / webclient / rc.html
index 2e05a86312a4868ac7088e61ab081b8422b22e4d..a8bc337a2193ebbc8c6506b97b5f9772afbb63e7 100644 (file)
                        type = "status";
                } else if (/^\* /.test(message.Text)) {
                        type = "me";
+               } else if (/^-!- /.test(message.Text)) {
+                       type = "local";
                } else {
                        type = "text";
                }
 
        function rckeydown(event) {
                if (event.keyCode == 13) {
-                       rcinput(document.input.say.value);
+                       if (document.input.say.value) {
+                               rcinput(document.input.say.value);
+                       }
                        document.input.say.value = "";
                        return false;
                }