Update of /cvsroot/dynapi/dynapi/src/lib/dynapi/util
In directory usw-pr-cvs1:/tmp/cvs-serv24621
Modified Files:
console.js
Log Message:
fixed console for ie/mac
Index: console.js
===================================================================
RCS file: /cvsroot/dynapi/dynapi/src/lib/dynapi/util/console.js,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** console.js 2001/07/19 15:00:40 1.2
--- console.js 2001/11/11 19:54:58 1.3
***************
*** 20,24 ****
if (!DynAPI.console.enabled) return;
if (!DynAPI.console.consolewin || DynAPI.console.consolewin.closed) DynAPI.console.open();
! if (is.ns6) {
msg = msg.toString();
msg = msg.replace(/</g,'<');
--- 20,24 ----
if (!DynAPI.console.enabled) return;
if (!DynAPI.console.consolewin || DynAPI.console.consolewin.closed) DynAPI.console.open();
! if (is.ns6 || (is.platform=="mac" && is.ie)) {
msg = msg.toString();
msg = msg.replace(/</g,'<');
|