join/parts no longer highlighting its tab
authorDarren <darren@darrenwhitlen.com>
Sun, 7 Oct 2012 16:53:42 +0000 (17:53 +0100)
committerDarren <darren@darrenwhitlen.com>
Sun, 7 Oct 2012 16:53:42 +0000 (17:53 +0100)
client_backbone/css/style.css
client_backbone/dev/view.js

index 5034eb7b1815d891c29a3703ea5d57cb1a8321fc..9fc5f4714489a93edcef8a7cb94c259c2bcc9f89 100644 (file)
@@ -80,6 +80,7 @@ a { color:#36C; text-decoration:none; cursor:pointer; }
     font-weight: bold;
 }
 #toolbar .panellist .alert_activity { font-weight: bold; background: #009900; }
+#toolbar .panellist .alert_action { font-weight: bold; }
 
 #toolbar .panellist li img { width:1em; height:1em; top:7px; right:5px; position:absolute; }
 #toolbar .panellist li img.icon { left:5px; top:2px; height:auto; width:auto; }
index 8fb20be56d3a55dee49773cb2f021d0ded4174bc..f8106d5b1c82e75b4e88ae3a15e59eafbd6b89c9 100755 (executable)
@@ -317,7 +317,7 @@ kiwi.view.Panel = Backbone.View.extend({
         line_msg = '<div class="msg <%= type %>"><div class="time"><%- time %></div><div class="nick" style="<%= nick_style %>"><%- nick %></div><div class="text" style="<%= style %>"><%= msg %> </div></div>';\r
         $this.append(_.template(line_msg, msg));\r
 \r
-        if (msg.type === 'action') {\r
+        if (msg.type.match(/^action /)) {\r
             this.alert('action');\r
         } else if (msg.msg.indexOf(kiwi.gateway.get('nick')) > -1) {\r
             this.alert('highlight');\r