Skip to content

Instantly share code, notes, and snippets.

@maxxcrawford
Last active December 21, 2015 23:09
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 maxxcrawford/6380737 to your computer and use it in GitHub Desktop.
Save maxxcrawford/6380737 to your computer and use it in GitHub Desktop.
addEventListener / IE8 Fix
if (!window.addEventListener) {
// DO NOTHING
//window.attachEvent("orientationchange", resizeColorBox);
}
else {
window.addEventListener("orientationchange", resizeColorBox, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment