Changeset 7916
- Timestamp:
- 04/03/07 03:06:49 (22 months ago)
- Location:
- dojo/trunk/_base/_loader
- Files:
-
- 2 modified
-
hostenv_rhino.js (modified) (1 diff)
-
hostenv_spidermonkey.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/_loader/hostenv_rhino.js
r7774 r7916 12 12 dojo._name = 'rhino'; 13 13 dojo.isRhino = true; 14 15 if(typeof print == "function"){ 16 console.debug = print; 17 } 14 18 15 19 if(typeof dojo["byId"] == "undefined"){ -
dojo/trunk/_base/_loader/hostenv_spidermonkey.js
r7774 r7916 13 13 dojo.exit = function(exitcode){ 14 14 quit(exitcode); 15 } 16 17 if(typeof print == "function"){ 18 console.debug = print; 15 19 } 16 20