[Phpfreechat-svn] SF.net SVN: phpfreechat: [883] trunk/src/client/pfcclient.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-11-29 17:26:18
|
Revision: 883 http://svn.sourceforge.net/phpfreechat/?rev=883&view=rev Author: kerphi Date: 2006-11-29 09:26:09 -0800 (Wed, 29 Nov 2006) Log Message: ----------- Bug fix: correct the sound button label order and refresh the button at startup Modified Paths: -------------- trunk/src/client/pfcclient.js Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-11-29 16:33:12 UTC (rev 882) +++ trunk/src/client/pfcclient.js 2006-11-29 17:26:09 UTC (rev 883) @@ -125,6 +125,7 @@ this.refresh_loginlogout(); this.refresh_minimize_maximize(); this.refresh_Smileys(); + this.refresh_sound(); this.refresh_nickmarker(); }, @@ -1412,13 +1413,13 @@ if (this.issoundenable) { snd_icon.src = this.res.getFileUrl('images/sound-on.gif'); - snd_icon.alt = this.res.getLabel('Play sound'); + snd_icon.alt = this.res.getLabel('Mute sound'); snd_icon.title = snd_icon.alt; } else { snd_icon.src = this.res.getFileUrl('images/sound-off.gif'); - snd_icon.alt = this.res.getLabel('Mute sound'); + snd_icon.alt = this.res.getLabel('Play sound'); snd_icon.title = snd_icon.alt; } }, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |