Created
February 4, 2014 05:14
-
-
Save joaocunha/8798486 to your computer and use it in GitHub Desktop.
Modernizr test for multiple file upload capabilities
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
/** | |
* Modernizr test for multiple file upload capabilities | |
* | |
* @author Joao Cunha | |
* @license MIT | |
*/ | |
Modernizr.addTest('multipleupload', function() { | |
return 'multiple' in document.createElement('input'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment