Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv12855/chat/lib/index_libs
Modified Files:
start_page.lib.js
Log Message:
fixed a js bug with Opera 5.0 (getting text box size)
Index: start_page.lib.js
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/start_page.lib.js,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** start_page.lib.js 2001/12/05 19:25:15 1.15
--- start_page.lib.js 2001/12/08 17:48:19 1.16
***************
*** 73,79 ****
// Update the starting form
! with (document.forms['startingForm'])
{
! if (typeof(aColWidth) != 'undefined')
{
elements['colWidth'].value = aColWidth;
--- 73,79 ----
// Update the starting form
! if (typeof(aColWidth) != 'undefined' && aColWidth)
{
! with (document.forms['startingForm'])
{
elements['colWidth'].value = aColWidth;
|