Compatible with IE but still one issue to fix on IE : IE seems to lost focus on chatting and never take back the focus when in flash client. Need to switch to another window/tab and get back so the timer end...

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@4046 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
DJP 2010-03-29 17:30:03 +00:00
parent 5e91e4cf95
commit 4a70227ca2

View File

@ -129,7 +129,7 @@ var blinktitle = function(message1, message2)
if(lostFocus)
{
document.title = (!document.title || document.title == message2)?message1:message2;
blinkTimer = window.setTimeout(blinktitle, 500, message1, message2);
blinkTimer = window.setTimeout("blinktitle('" + message1 + "', '" + message2 + "')", 500);
}
}