[Phpfreechat-svn] SF.net SVN: phpfreechat: [647] trunk/themes/default/templates/pfcclient.js.tpl.ph
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-07-07 07:37:24
|
Revision: 647 Author: kerphi Date: 2006-07-07 00:37:19 -0700 (Fri, 07 Jul 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=647&view=rev Log Message: ----------- Bug fix: the nickname list borders were badly displayed on IE6 Modified Paths: -------------- trunk/themes/default/templates/pfcclient.js.tpl.php Modified: trunk/themes/default/templates/pfcclient.js.tpl.php =================================================================== --- trunk/themes/default/templates/pfcclient.js.tpl.php 2006-07-07 07:09:22 UTC (rev 646) +++ trunk/themes/default/templates/pfcclient.js.tpl.php 2006-07-07 07:37:19 UTC (rev 647) @@ -1424,6 +1424,7 @@ content.style.display = 'block'; else content.style.display = 'none'; + content.style.zIndex = '100'; // for IE6, force the nickname list borders to be shown } // then refresh the button icon @@ -1458,17 +1459,11 @@ var style = $H(); if (!this.showwhosonline) { - style['width'] = '100%'; - chatdiv.setAttribute('style', 'width:100%'); - chatdiv.setAttribute('cssText', 'width:100%'); // for IE6 - // Element.setStyle(chatdiv, style); + chatdiv.style.width = '100%'; } else { - style['width'] = ''; - chatdiv.setAttribute('style', ''); - chatdiv.setAttribute('cssText', ''); // for IE6 - // Element.setStyle(chatdiv, style); + chatdiv.style.width = ''; } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |