[Phpfreechat-svn] SF.net SVN: phpfreechat: [754] trunk/src/client/pfcclient.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-09-12 13:13:08
|
Revision: 754 http://svn.sourceforge.net/phpfreechat/?rev=754&view=rev Author: kerphi Date: 2006-09-12 06:12:59 -0700 (Tue, 12 Sep 2006) Log Message: ----------- Bug fix: the windows notifier counter was not reset when the window was reactivated Modified Paths: -------------- trunk/src/client/pfcclient.js Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-09-12 07:48:17 UTC (rev 753) +++ trunk/src/client/pfcclient.js 2006-09-12 13:12:59 UTC (rev 754) @@ -63,7 +63,7 @@ this.detectactivity = new DetectActivity(this.el_container); // restore the window title when user come back to the active zone - if (pfc_notify_window) this.detectactivity.onunactivate = this.gui.unnotifyWindow; + if (pfc_notify_window) this.detectactivity.onunactivate = this.gui.unnotifyWindow.bindAsEventListener(this.gui); /* the events callbacks */ Event.observe(this.el_words, 'keypress', this.callbackWords_OnKeypress.bindAsEventListener(this), false); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |