Skip to content

Instantly share code, notes, and snippets.

@Komsomol
Created July 21, 2016 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Komsomol/0d0a732fb5ef68d3822dee12f4690313 to your computer and use it in GitHub Desktop.
Save Komsomol/0d0a732fb5ef68d3822dee12f4690313 to your computer and use it in GitHub Desktop.
IE8/IE9 Console.log warning removal
// console overwrite for IE8
if (window.console === undefined) {
window.console = {};
console.log = function() {};
console.error = function() {};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment