Changeset 8031
- Timestamp:
- 09/17/08 19:39:24 (3 months ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Console.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Console.js
r7675 r8031 234 234 * OpenLayers.Console calls to the console object. 235 235 */ 236 if(window.console) {237 var scripts = document.getElementsByTagName("script");238 for(var i=0, len=scripts.length; i<len; ++i) {239 if( scripts[i].src.indexOf("firebug.js") != -1) {236 var scripts = document.getElementsByTagName("script"); 237 for(var i=0, len=scripts.length; i<len; ++i) { 238 if(scripts[i].src.indexOf("firebug.js") != -1) { 239 if(console) { 240 240 OpenLayers.Util.extend(OpenLayers.Console, console); 241 241 break;
