make tinycon update on all chat messages not just ones that mention your name

pull/1426/head
John McLear 2013-01-29 12:09:16 +00:00
parent fa7952523e
commit a7361f5ce0
1 changed files with 3 additions and 0 deletions

View File

@ -161,11 +161,14 @@ var chat = (function()
title: authorName, title: authorName,
// (string | mandatory) the text inside the notification // (string | mandatory) the text inside the notification
text: text, text: text,
// (bool | optional) if you want it to fade out on its own or just sit there // (bool | optional) if you want it to fade out on its own or just sit there
sticky: false, sticky: false,
// (int | optional) the time you want it to be alive for before fading out // (int | optional) the time you want it to be alive for before fading out
time: '4000' time: '4000'
}); });
Tinycon.setBubble(count);
} }
} }
} }