Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv5248/chat
Modified Files:
exit.php3
Log Message:
Fix some js bugs
Index: exit.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/exit.php3,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** exit.php3 2001/04/28 15:42:02 1.13
--- exit.php3 2001/05/08 09:18:16 1.14
***************
*** 147,151 ****
<script type="text/javascript" language="javascript">
<!--
! window.parent.pmcReConnect();
// -->
</script>
--- 147,166 ----
<script type="text/javascript" language="javascript">
<!--
! function pmcLoadFramesOrder()
! {
! if (typeof(window.parent.frames['loader'].window) != 'undefined')
! {
! if (jsIsWaiting)
! clearTimeout(jsIsWaiting);
! window.parent.pmcReConnect();
! }
! else
! {
! jsIsWaiting = setTimeout('pmcLoadFramesOrder()', 2000);
! }
! } // end of the 'pmcLoadFramesOrder()' function
!
! var jsIsWaiting = null;
! pmcLoadFramesOrder();
// -->
</script>
|