[Phpfreechat-svn] SF.net SVN: phpfreechat: [857] trunk/src/client/pfcgui.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-11-01 17:28:28
|
Revision: 857 http://svn.sourceforge.net/phpfreechat/?rev=857&view=rev Author: kerphi Date: 2006-11-01 09:27:54 -0800 (Wed, 01 Nov 2006) Log Message: ----------- [en] Bug fix: fix a IE6 scroll problem, see sourceforge bug 1568264 (thanks to bcc) [fr] Bug fix : r?\195?\169soud un probl?\195?\168me de scroll sous IE6, voyez le bug sourceforge 1568264 (merci ?\195?\160 bcc) Modified Paths: -------------- trunk/src/client/pfcgui.js Modified: trunk/src/client/pfcgui.js =================================================================== --- trunk/src/client/pfcgui.js 2006-11-01 17:10:55 UTC (rev 856) +++ trunk/src/client/pfcgui.js 2006-11-01 17:27:54 UTC (rev 857) @@ -43,6 +43,11 @@ // the wanted tab is active so just scroll down the tab content element // by elttoscroll element height (use 'offsetHeight' attribute) var content = this.getChatContentFromTabId(tabid); + + // the next line seems to help with IE6 scroll on the first load + // http://sourceforge.net/tracker/index.php?func=detail&aid=1568264&group_id=158880&atid=809601 + var dudVar = content.scrollTop; + content.scrollTop += elttoscroll.offsetHeight+2; this.scrollpos[tabid] = content.scrollTop; }, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |