Skip to content

Commit

Permalink
Updated: FileUploader.isFileLikeObject()
Browse files Browse the repository at this point in the history
(cherry picked from commit f7457d2)
  • Loading branch information
nervgh committed Aug 10, 2015
1 parent 51cc05a commit 43343a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/FileUploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ export default function __(fileUploaderOptions, $rootScope, $http, $window, File
* @private
*/
static isFileLikeObject(value) {
return value instanceof this.constructor.FileLikeObject;
return value instanceof FileLikeObject;
}
/**
* Returns "true" if value is array like object
Expand Down

0 comments on commit 43343a3

Please sign in to comment.