Skip to content

Instantly share code, notes, and snippets.

@joaocunha
Created February 4, 2014 05:14
Show Gist options
  • Save joaocunha/8798486 to your computer and use it in GitHub Desktop.
Save joaocunha/8798486 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