Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv12910/chat/lib
Modified Files:
users_popup.lib.js
Log Message:
Fixed a bug with NS4: jsIsIE4 must be defined from the document itself and not from the users_popup.lib.js library
Index: users_popup.lib.js
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/users_popup.lib.js,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** users_popup.lib.js 2001/04/29 14:25:46 1.6
--- users_popup.lib.js 2001/05/03 07:00:12 1.7
***************
*** 28,36 ****
- var jsIsDOM = (typeof(document.getElementById) != 'undefined') ? 1 : 0;
- var jsIsIE4 = ((typeof(document.all) != 'undefined') && (parseInt(navigator.appVersion) >= 4)) ? 1 : 0;
- var jsIsNS4 = (typeof(document.layers) != 'undefined') ? 1 : 0;
- var jsIsVersion4 = (jsIsDOM || jsIsIE4 || jsIsNS4) ? 1 : 0;
-
var jsIsExpanded = false;
var jsRoomsCnt = 0;
--- 28,31 ----
|