Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Created June 21, 2013 21:05
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 pbojinov/5834301 to your computer and use it in GitHub Desktop.
Save pbojinov/5834301 to your computer and use it in GitHub Desktop.
Console fix for sad boy IE
/**
* For browsers like IE8 and below so we do not reek havok
*/
if (!('console' in window)) {
function nothing() {}
window.console = {
debug: nothing,
dir: nothing,
error: nothing,
group: nothing,
groupCollapsed: nothing,
groupEnd: nothing,
info: nothing,
log: nothing,
time: nothing,
timeEnd: nothing,
trace: nothing,
warn: nothing
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment