From a7361f5ce0063cd343f0df1ea22e331aea717271 Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 29 Jan 2013 12:09:16 +0000 Subject: [PATCH] make tinycon update on all chat messages not just ones that mention your name --- src/static/js/chat.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/static/js/chat.js b/src/static/js/chat.js index f868d869a..5bd88e2e3 100644 --- a/src/static/js/chat.js +++ b/src/static/js/chat.js @@ -161,11 +161,14 @@ var chat = (function() title: authorName, // (string | mandatory) the text inside the notification text: text, + // (bool | optional) if you want it to fade out on its own or just sit there sticky: false, // (int | optional) the time you want it to be alive for before fading out time: '4000' }); + Tinycon.setBubble(count); + } } }