Skip to content

Instantly share code, notes, and snippets.

@catdad
Created June 16, 2014 17:34
Show Gist options
  • Save catdad/1ea87248218969e57794 to your computer and use it in GitHub Desktop.
Save catdad/1ea87248218969e57794 to your computer and use it in GitHub Desktop.
Simple `console.log` development patch for IE8+
if (!window.console) { window.console = { log: function () {} }; } // console fix for IE8
if (!console.log) { console.log = Function.prototype.bind.call(console.log, console); } // console fix for IE9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment