includes/clientside/firebug/src/firebugx.js
author Dan
Sun, 22 Mar 2009 12:10:25 -0400
changeset 886 041c86ff16d5
parent 551 3acd624d4f4f
permissions -rw-r--r--
Set textarea in sidebar editor to fixed height of 360px due to webkit bug (thanks Neal)


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