Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tomgillett/5e6f99b26ecce79a5dae to your computer and use it in GitHub Desktop.
Save tomgillett/5e6f99b26ecce79a5dae to your computer and use it in GitHub Desktop.
Modernizr test for multiple file upload capabilities
/**
* 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