includes/clientside/firebug/src/firebugx.js
author Dan
Wed, 02 Jul 2008 19:36:44 -0400
changeset 592 27377179fe58
parent 551 3acd624d4f4f
permissions -rw-r--r--
Another sweep from the optimization monster. template: rewrote parts of tplWikiFormat to do faster validation and less eval()ing template: sidebar is now cached for anonymous users (thanks to Richard Greene for the suggestion) dbal: rewrote SQL query parser, much cruft taken out template: made tplWikiFormat depend more on RenderMan common: moved some lesser-used includes out of main loading sequence Expect a lot of changes to AES code in the next commit!
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
551
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     1
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     2
if (!("console" in window) || !("firebug" in console))
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     3
{
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     4
    var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     5
    "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     6
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     7
    window.console = {};
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     8
    for (var i = 0; i < names.length; ++i)
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     9
        window.console[names[i]] = function() {}
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
    10
}