Created
March 23, 2015 20:51
-
-
Save mdvorscak/6b2bde74d4f7945dcc04 to your computer and use it in GitHub Desktop.
IE8 Shim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * 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