Changeset 13141
- Timestamp:
- 03/19/08 01:43:39 (8 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/_base/_loader/bootstrap.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/_loader/bootstrap.js
r13140 r13141 79 79 80 80 if(!this["console"]){ 81 this.console = {}; 81 this.console = { 82 log: function(){} // no-op 83 }; 82 84 } 83 85 … … 87 89 "trace", "warn", "log" 88 90 ]; 89 if(!console["log"]){ // some browsers don't have full firebug bug give us console.log. Use it if we can. Refs #625590 console.log = function(){}; // no-op91 }92 91 var i=0, tn; 93 92 while((tn=cn[i++])){