Sha256: 1df1fbce12055ce4c84f0d65d1980de1f83a0e4153cd248f5a19045c8dfc9950

Contents?: true

Size: 413 Bytes

Versions: 3

Compression:

Stored size: 413 Bytes

Contents

// usage: log('inside coolFunc', this, arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
  log.history = log.history || [];   // store logs to an array for reference
  log.history.push(arguments);
  if(this.console) console.log( Array.prototype.slice.call(arguments) );
};



// place any jQuery/helper plugins in here, instead of separate, slower script files.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
html5-boilerplate-0.3.2 templates/project/javascripts/plugins.js
html5-boilerplate-0.3.1 templates/project/javascripts/plugins.js
html5-boilerplate-0.3.0 templates/project/javascripts/plugins.js