From c301e690609e79727844622d29a0931267a27de4 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sun, 19 Aug 2012 08:41:34 -0700 Subject: [PATCH] CSS class for local messages --- webclient/rc.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webclient/rc.html b/webclient/rc.html index 7f3e8d1..a8bc337 100644 --- a/webclient/rc.html +++ b/webclient/rc.html @@ -258,6 +258,8 @@ type = "status"; } else if (/^\* /.test(message.Text)) { type = "me"; + } else if (/^-!- /.test(message.Text)) { + type = "local"; } else { type = "text"; } -- 2.44.1