Skip to content

Commit f61cd59

Browse files
committed
Bump
1 parent 4c9f324 commit f61cd59

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

Diff for: angular-file-upload.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
angular-file-upload v1.1.5
3-
https://github.com/nervgh/angular-file-upload
2+
angular-file-upload v1.1.6
3+
https://github.com/oneflow/angular-file-upload
44
*/
55
(function(angular, factory) {
66
if (typeof define === 'function' && define.amd) {
@@ -506,13 +506,14 @@ module
506506
xhr.setRequestHeader(name, value);
507507
});
508508

509+
509510
if(!item.directUpload) {
510511
xhr.send(form);
511512
} else {
512-
xhr.send(_item.file);
513+
xhr.send(item._file);
513514
}
514515

515-
this._render();
516+
that._render();
516517
});
517518
};
518519
/**

0 commit comments

Comments
 (0)