includes/clientside/firebug/src/firebugx.js
author Dan
Mon, 11 Aug 2008 21:34:37 -0400
changeset 682 9523cc7d767c
parent 551 3acd624d4f4f
permissions -rw-r--r--
Fixed System pages not being createable even with proper admin rights. This is hackish, it probably needs to have something implemented at the ACL level.


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