Created
August 25, 2011 02:37
-
-
Save detroitpro/1169844 to your computer and use it in GitHub Desktop.
FileUploadHTML5
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
| $(document).ready(function () { | |
| if (window.File && window.FileReader && window.FileList && window.Blob) { | |
| //console.log('2012'); | |
| wireUpModernFeatures(); | |
| } else { | |
| //console.log('FAIL'); | |
| wireUpClassicFeatures(); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment