includes/clientside/firebug/src/firebugx.js
author Dan
Wed, 09 Jul 2008 23:44:19 -0400
changeset 624 e9c04ed3290f
parent 551 3acd624d4f4f
permissions -rw-r--r--
Fixed bad ALTER command in PostgreSQL 1.1.2 -> 1.1.3 upgrade


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