includes/clientside/firebug/src/firebugx.js
author Dan
Sat, 07 Jun 2008 22:50:31 -0400
changeset 566 06d241de3151
parent 551 3acd624d4f4f
permissions -rw-r--r--
Made ajaxReset() call the actual requested title instead of effective title; fixed (again) template compiler bug not matching certain tags (probably PCRE bug)


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