Merge pull request #1 from HLaiveling/arrayOfFilters-patch

Update file-uploader.ts
This commit is contained in:
HLaiveling
2016-02-03 11:29:14 -05:00

View File

@@ -44,7 +44,7 @@ export class FileUploader {
list.map(some => {
let temp = new FileLikeObject(some);
if (this._isValidFile(temp, [], options)) {
if (this._isValidFile(temp, arrayOfFilters, options)) {
let fileItem = new FileItem(this, some, options);
addedFileItems.push(fileItem);
this.queue.push(fileItem);