includes/clientside/firebug/src/firebugx.js
changeset 1015 17721bad21df
parent 1014 930c1fdd3e9f
child 1016 6d32d80b2192
equal deleted inserted replaced
1014:930c1fdd3e9f 1015:17721bad21df
     1 
       
     2 if (!("console" in window) || !("firebug" in console))
       
     3 {
       
     4     var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
       
     5     "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
       
     6 
       
     7     window.console = {};
       
     8     for (var i = 0; i < names.length; ++i)
       
     9         window.console[names[i]] = function() {}
       
    10 }