Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv8411/chat/lib
Modified Files:
connectStateH.js
Log Message:
Clicking on the red button frees the submit button at the input frame
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/lib
Index: connectStateH.js
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/connectStateH.js,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** connectStateH.js 2001/02/25 19:10:08 1.2
--- connectStateH.js 2001/04/13 21:10:35 1.3
***************
*** 74,77 ****
--- 74,83 ----
Connecting(1);
force_refresh();
+ with (window.parent.frames['input'].window.document.forms['MsgForm'])
+ {
+ elements['sent'].value = '0';
+ if (document.all)
+ elements['sendForm'].disabled = false;
+ }
};
};
|