Effective default queue limit of 0 #58

Merged
bensgroi merged 1 commits from patch-1 into master 2016-05-11 16:17:31 +00:00

View File

@@ -225,7 +225,7 @@ export class FileUploader {
}
private _queueLimitFilter() {
return this.queue.length < this.queueLimit;
return this.queueLimit === undefined || this.queue.length < this.queueLimit;
}
private _isValidFile(file:any, filters:any, options:any) {