Last active
December 16, 2015 10:08
-
-
Save rupl/5417438 to your computer and use it in GitHub Desktop.
yepnope hackin'
This file contains 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
$(function () { | |
Modernizr.load({ | |
test: Modernizr.json, | |
nope: ['js/vendor/polyfills/json3.js'], | |
callback: function() { alert('fires 2nd'));}, | |
complete: function () { alert('fires 1st')); } | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment