includes/clientside/firebug/firebugx.js
author Dan
Tue, 01 Apr 2008 01:24:10 -0400
changeset 515 be77f34d03af
parent 509 175df10e0b56
child 551 3acd624d4f4f
permissions -rw-r--r--
Fixed bad URL interpretation on CGI and Apache wrongly supplying PATH_INFO when directory index requested


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() {}
}