update branch #407

Closed
NicolaiErtl wants to merge 13 commits from master into master
2 changed files with 4 additions and 0 deletions
Showing only changes of commit e068511917 - Show all commits

View File

@@ -31,6 +31,9 @@ export class FileItem {
this.options = options;
this.file = new FileLikeObject(some);
this._file = some;
if (uploader.options && uploader.options.method) {
this.method = uploader.options.method;
}
this.url = uploader.options.url;
}

View File

@@ -22,6 +22,7 @@ export interface FileUploaderOptions {
isHTML5?:boolean;
filters?:Array<FilterFunction>;
headers?:Array<Headers>;
method?:string;
authToken?:string;
maxFileSize?:number;
queueLimit?:number;