summaryrefslogtreecommitdiff
path: root/docroot/lib/firebug/firebugx.js
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-01-17 12:06:15 -0500
committerMike Crute <mcrute@gmail.com>2010-01-17 12:06:15 -0500
commit55974d21a824378b287e563bce4c32597060cfca (patch)
treeff8426efe10ff98189fee26583f061fb08f19a50 /docroot/lib/firebug/firebugx.js
downloadsantoprene_designer_site-master.tar.bz2
santoprene_designer_site-master.tar.xz
santoprene_designer_site-master.zip
Initial importHEADmaster
Diffstat (limited to 'docroot/lib/firebug/firebugx.js')
-rwxr-xr-xdocroot/lib/firebug/firebugx.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/docroot/lib/firebug/firebugx.js b/docroot/lib/firebug/firebugx.js
new file mode 100755
index 0000000..5a467fc
--- /dev/null
+++ b/docroot/lib/firebug/firebugx.js
@@ -0,0 +1,10 @@
1
2if (!("console" in window) || !("firebug" in console))
3{
4 var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
5 "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
6
7 window.console = {};
8 for (var i = 0; i < names.length; ++i)
9 window.console[names[i]] = function() {}
10} \ No newline at end of file