Created
June 16, 2014 17:34
-
-
Save catdad/1ea87248218969e57794 to your computer and use it in GitHub Desktop.
Simple `console.log` development patch for IE8+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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