Skip to content

Instantly share code, notes, and snippets.

@taitems
Created August 15, 2011 02:34
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save taitems/1145619 to your computer and use it in GitHub Desktop.
Save taitems/1145619 to your computer and use it in GitHub Desktop.
Prevent console.log()s from causing JS errors
if (!window.console) {
window.console = {};
window.console.log = function() {
return false;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment