Skip to content

Instantly share code, notes, and snippets.

@rex
Created February 13, 2015 20:04
Show Gist options
  • Select an option

  • Save rex/6bd2e1b103f3ba1692e4 to your computer and use it in GitHub Desktop.

Select an option

Save rex/6bd2e1b103f3ba1692e4 to your computer and use it in GitHub Desktop.
Simple protection against loose console.log() statements killing the JS engine in browsers without console.* methods (ahemIEahem)
// Put this inside a <script></script> tag at the very tippy top of your page to make sure it works properly.
var noop = function() {}
if(window.console == undefined) {
window.console = {
log: noop,
error: noop,
warn: noop,
table: noop
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment