includes/clientside/firebug/firebugx.js
author Dan
Mon, 21 Apr 2008 19:37:31 -0400
changeset 539 1beddd693f2d
parent 509 175df10e0b56
child 551 3acd624d4f4f
permissions -rw-r--r--
Replaced some confirmation boxes with miniPromptMessage versions. This commit will require a re-langimport and shift-reload.


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