From 4a70227ca2545020b029e78a2835a8e2af3386b0 Mon Sep 17 00:00:00 2001 From: DJP Date: Mon, 29 Mar 2010 17:30:03 +0000 Subject: [PATCH] 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 --- bigbluebutton-client/html-template/BigBlueButton.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-client/html-template/BigBlueButton.html b/bigbluebutton-client/html-template/BigBlueButton.html index 84e33218bb..ab52f952fb 100644 --- a/bigbluebutton-client/html-template/BigBlueButton.html +++ b/bigbluebutton-client/html-template/BigBlueButton.html @@ -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); } }