[Phpfreechat-svn] SF.net SVN: phpfreechat: [683] trunk/src/client/pfcclient.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-08-19 08:25:15
|
Revision: 683 Author: kerphi Date: 2006-08-19 01:25:08 -0700 (Sat, 19 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=683&view=rev Log Message: ----------- Bug fix: don't notify the tabs when old message are posted (when history is shown at first load) Modified Paths: -------------- trunk/src/client/pfcclient.js Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-08-18 22:09:53 UTC (rev 682) +++ trunk/src/client/pfcclient.js 2006-08-19 08:25:08 UTC (rev 683) @@ -670,12 +670,14 @@ line += '</div>'; // notify the hidden tab a message has been received - if (cmd == 'send' || cmd == 'me') - { - var tabid = recipientid; - if (this.gui.getTabId() != tabid) - this.gui.notifyTab(tabid); - } + // don't notify anything if this is old messages + if (oldmsg == 0) + if (cmd == 'send' || cmd == 'me') + { + var tabid = recipientid; + if (this.gui.getTabId() != tabid) + this.gui.notifyTab(tabid); + } if (msg_html[recipientid] == null) msg_html[recipientid] = line; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |