You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
402 B
14 lines
402 B
11 years ago
|
|
||
|
|
||
|
// Detects whether input type="file" is available on the platform
|
||
|
// E.g. iOS < 6 and some android version don't support this
|
||
|
|
||
|
// It's useful if you want to hide the upload feature of your app on devices that
|
||
|
// don't support it (iphone, ipad, etc).
|
||
|
|
||
|
Modernizr.addTest('fileinput', function() {
|
||
|
var elem = document.createElement('input');
|
||
|
elem.type = 'file';
|
||
|
return !elem.disabled;
|
||
|
});
|