forked from bleenco/ngx-uploader
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue with filter of undefined when using an <input type="file"> (
bleenco#168) * Fixed issue with filter of undefined when using an <input type="file"> As it returns a FileList instead of an array.. but its possible to use array functions * review changes - changed array.prototype to [].filter * bumped version to 2.0.4
- Loading branch information
1 parent
a9dd99b
commit 4770760
Showing
3 changed files
with
48 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
{ | ||
"name": "ngx-uploader", | ||
"description": "Angular File Uploader", | ||
"version": "2.0.3", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"typings": "index.d.ts", | ||
"author": "Jan Kuri <[email protected]>", | ||
"scripts": { | ||
"clean": "./scripts/clean.sh", | ||
"dev": "tsc --watch", | ||
"build": "./node_modules/.bin/ngc -p tsconfig.json", | ||
"prepublish": "npm run build", | ||
"docs": "gulp docs", | ||
"changelog": "gulp changelog" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jkuri/ngx-uploader.git" | ||
}, | ||
"keywords": [ | ||
"ngx", | ||
"angular", | ||
"file", | ||
"upload", | ||
"uploader" | ||
], | ||
"devDependencies": { | ||
"@angular/common": "^2.4.1", | ||
"@angular/compiler": "^2.4.1", | ||
"@angular/compiler-cli": "^2.4.1", | ||
"@angular/core": "^2.4.1", | ||
"@angular/platform-browser": "^2.4.1", | ||
"@angular/platform-browser-dynamic": "^2.4.1", | ||
"@angular/platform-server": "^2.4.1", | ||
"@types/core-js": "^0.9.35", | ||
"@types/node": "^6.0.52", | ||
"gulp": "^3.9.1", | ||
"gulp-conventional-changelog": "^1.1.0", | ||
"gulp-typedoc": "^2.0.1", | ||
"reflect-metadata": "^0.1.9", | ||
"rxjs": "5.0.1", | ||
"typedoc": "^0.5.1", | ||
"typescript": "2.0.10", | ||
"zone.js": "^0.7.4" | ||
} | ||
} | ||
"name": "ngx-uploader", | ||
"description": "Angular File Uploader", | ||
"version": "2.0.4", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"typings": "index.d.ts", | ||
"author": "Jan Kuri <[email protected]>", | ||
"scripts": { | ||
"clean": "./scripts/clean.sh", | ||
"dev": "tsc --watch", | ||
"build": "./node_modules/.bin/ngc -p tsconfig.json", | ||
"prepublish": "npm run build", | ||
"docs": "gulp docs", | ||
"changelog": "gulp changelog" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jkuri/ngx-uploader.git" | ||
}, | ||
"keywords": [ | ||
"ngx", | ||
"angular", | ||
"file", | ||
"upload", | ||
"uploader" | ||
], | ||
"devDependencies": { | ||
"@angular/common": "^2.4.1", | ||
"@angular/compiler": "^2.4.1", | ||
"@angular/compiler-cli": "^2.4.1", | ||
"@angular/core": "^2.4.1", | ||
"@angular/platform-browser": "^2.4.1", | ||
"@angular/platform-browser-dynamic": "^2.4.1", | ||
"@angular/platform-server": "^2.4.1", | ||
"@types/core-js": "^0.9.35", | ||
"@types/node": "^6.0.52", | ||
"gulp": "^3.9.1", | ||
"gulp-conventional-changelog": "^1.1.0", | ||
"gulp-typedoc": "^2.0.1", | ||
"reflect-metadata": "^0.1.9", | ||
"rxjs": "5.0.1", | ||
"typedoc": "^0.5.1", | ||
"typescript": "2.0.10", | ||
"zone.js": "^0.7.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters