includes/clientside/firebug/src/firebugx.js
author Dan
Tue, 24 Jun 2008 23:37:23 -0400
changeset 582 a38876c0793c
parent 551 3acd624d4f4f
permissions -rw-r--r--
Majorly reworked Javascript runtime stuff to use on-demand loading. - Runtime reduced to only AJAX library + very common functions, ~50K total - Almost all specific functionality loaded on demand using synchronous XHR - Crypto functions consolidated into crypto.js - Much testing still to be done - ACL editor known not working under firefox - Some other components (autofill, theme/rank managers) not ported yet
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
}