1
2// usage: log('inside coolFunc', this, arguments);
3// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
4window.log = function(){
5  log.history = log.history || [];   // store logs to an array for reference
6  log.history.push(arguments);
7  if(this.console) {
8      arguments.callee = arguments.callee.caller;
9      console.log( Array.prototype.slice.call(arguments) );
10  }
11};
12// make it safe to use console.log always
13(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();)b[a]=b[a]||c})(window.console=window.console||{});
14
15
16// place any jQuery/helper plugins in here, instead of separate, slower script files.
17