Skip to content

Commit 1bf43e9

Browse files
committed
Fixes #353, #392, #443, #462, #387, #432
1 parent f9c5c5a commit 1bf43e9

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

angular-file-upload.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
angular-file-upload v1.1.5
2+
angular-file-upload v1.1.6
33
https://github.com/nervgh/angular-file-upload
44
*/
55
(function(angular, factory) {
@@ -97,7 +97,7 @@ module
9797
this.queue.push(fileItem);
9898
this._onAfterAddingFile(fileItem);
9999
} else {
100-
var filter = this.filters[this._failFilterIndex];
100+
var filter = arrayOfFilters[this._failFilterIndex];
101101
this._onWhenAddingFileFailed(temp, filter, options);
102102
}
103103
}, this);

angular-file-upload.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-file-upload.min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "angular-file-upload",
3-
"main": "angular-file-upload.js",
3+
"main": "angular-file-upload.min.js",
44
"homepage": "https://github.com/nervgh/angular-file-upload",
55
"ignore": ["examples"],
66
"dependencies": {
77
"angular": "~1.2.11"
88
},
99
"devDependencies": {
1010
"es5-shim": ">=3.4.0"
11-
}
11+
},
1212
"keywords": [
1313
"angular",
1414
"file",

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"name": "angular-file-upload",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"homepage": "https://github.com/nervgh/angular-file-upload",
55
"description": "Angular File Upload is a module for the AngularJS framework",
66
"author": {
77
"name": "nerv",
88
"url": "https://github.com/nervgh"
99
},
1010
"main": "angular-file-upload.min.js",
11-
1211
"dependencies": {
1312
"coffee-script": "~1.6.2",
1413
"grunt-contrib-copy": "~0.4.1",

0 commit comments

Comments
 (0)