mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
Make a pulsating chat notification and remove the throb from the tab
This commit is contained in:
parent
fba2c5ccb2
commit
4b268f9579
4 changed files with 40 additions and 4 deletions
|
@ -69,13 +69,13 @@ var chat = (function()
|
|||
var count = Number($("#chatcounter").text());
|
||||
count++;
|
||||
$("#chatcounter").text(count);
|
||||
|
||||
//animation
|
||||
$("#chatcounter").css({"font-weight": "bold"});
|
||||
setTimeout('$("#chatcounter").css({"font-weight": "normal"})', 500);
|
||||
// chat throb stuff -- Just make it throb in for ~2 secs then fadeotu
|
||||
$('#chatthrob').html("<b>"+authorName+"</b>" + ": " + text);
|
||||
$('#chatthrob').effect("pulsate", {times:1,mode:"hide"},2000);
|
||||
}
|
||||
|
||||
self.scrollDown();
|
||||
|
||||
},
|
||||
init: function()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue