includes/clientside/firebug/src/firebugx.js
author Dan
Tue, 14 Apr 2009 21:02:13 -0400
changeset 909 94c1ff984286
parent 551 3acd624d4f4f
permissions -rw-r--r--
Finished core of log display interface including filter management. There is still a bit of a to-do list, especially regarding rollbacks and reuploads.


if (!("console" in window) || !("firebug" in console))
{
    var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
    "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];

    window.console = {};
    for (var i = 0; i < names.length; ++i)
        window.console[names[i]] = function() {}
}