Remove unused lib/consolex.js.
This commit is contained in:
parent
61c0fe781c
commit
3da73bd519
|
@ -1,28 +0,0 @@
|
||||||
/** Console X
|
|
||||||
* http://github.com/deadlyicon/consolex.js
|
|
||||||
*
|
|
||||||
* By Jared Grippe <jared@jaredgrippe.com>
|
|
||||||
*
|
|
||||||
* Copyright (c) 2009 Jared Grippe
|
|
||||||
* Licensed under the MIT license.
|
|
||||||
*
|
|
||||||
* consolex avoids ever having to see javascript bugs in browsers that do not implement the entire
|
|
||||||
* firebug console suit
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
(function(window) {
|
|
||||||
window.console || (window.console = {});
|
|
||||||
|
|
||||||
var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
|
|
||||||
"group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
|
|
||||||
|
|
||||||
function emptyFunction(){}
|
|
||||||
|
|
||||||
for (var i = 0; i < names.length; ++i){
|
|
||||||
window.console[names[i]] || (window.console[names[i]] = emptyFunction);
|
|
||||||
if (typeof window.console[names[i]] !== 'function')
|
|
||||||
window.console[names[i]] = (function(method) {
|
|
||||||
return function(){ return Function.prototype.apply.apply(method, [console,arguments]); };
|
|
||||||
})(window.console[names[i]]);
|
|
||||||
}
|
|
||||||
})(this);
|
|
|
@ -29,7 +29,6 @@
|
||||||
<script type="text/javascript" src="../src/WaitsForBlock.js"></script>
|
<script type="text/javascript" src="../src/WaitsForBlock.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="../src/html/TrivialReporter.js"></script>
|
<script type="text/javascript" src="../src/html/TrivialReporter.js"></script>
|
||||||
<script type="text/javascript" src="../lib/consolex.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue