includes/clientside/firebug/src/firebugx.js
author Dan
Thu, 20 Nov 2008 22:59:11 -0500
changeset 748 e39454295bbb
parent 551 3acd624d4f4f
permissions -rw-r--r--
Added makeSwitchable Dynano method for textareas; enabled support for makeSwitchable in comment runtime


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