[Phpfreechat-svn] SF.net SVN: phpfreechat: [1049] trunk/data/public/js/pfcgui.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-07-01 10:41:31
|
Revision: 1049 http://svn.sourceforge.net/phpfreechat/?rev=1049&view=rev Author: kerphi Date: 2007-07-01 03:41:31 -0700 (Sun, 01 Jul 2007) Log Message: ----------- Bug fix: On IE6 /leave command was broken Modified Paths: -------------- trunk/data/public/js/pfcgui.js Modified: trunk/data/public/js/pfcgui.js =================================================================== --- trunk/data/public/js/pfcgui.js 2007-07-01 10:00:25 UTC (rev 1048) +++ trunk/data/public/js/pfcgui.js 2007-07-01 10:41:31 UTC (rev 1049) @@ -174,7 +174,7 @@ // empty the chat div content var div_chat = this.getChatContentFromTabId(tabid); - div_chat.update(''); + div_chat.innerHTML = ''; // do not use ".update('')" or ".remove()" because it do not works on IE6 // remove the tab from the list var tabpos = indexOf(this.tabids, tabid); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |