add bower components to third party
This commit is contained in:
10
third_party/ui/bower_components/modernizr/feature-detects/blob-constructor.js
vendored
Normal file
10
third_party/ui/bower_components/modernizr/feature-detects/blob-constructor.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
// Blob constructor
|
||||
// http://dev.w3.org/2006/webapi/FileAPI/#constructorBlob
|
||||
|
||||
Modernizr.addTest('blobconstructor', function () {
|
||||
try {
|
||||
return !!new Blob();
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user