Skip to content

Instantly share code, notes, and snippets.

@mdvorscak
Created March 23, 2015 20:51
Show Gist options
  • Select an option

  • Save mdvorscak/6b2bde74d4f7945dcc04 to your computer and use it in GitHub Desktop.

Select an option

Save mdvorscak/6b2bde74d4f7945dcc04 to your computer and use it in GitHub Desktop.
IE8 Shim
/*
* Shim for things not defined in IE8
*
*/
/*
Fix Event.preventDefault
*/
if (!Event.prototype.preventDefault) {
Event.prototype.preventDefault = function preventDefault() {
this.returnValue = false;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment