Skip to content

Commit a2f5bd3

Browse files
committed
Angualar 1.4 Support
0 parents  commit a2f5bd3

26 files changed

Lines changed: 3742 additions & 0 deletions

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.temp
2+
.idea
3+
*.iml
4+
node_modules
5+
bower_components

.jshintrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"camelcase" : true,
3+
"indent": 4,
4+
"strict": true,
5+
"undef": true,
6+
"unused": true,
7+
"quotmark": "single",
8+
"maxlen": 120,
9+
"trailing": true,
10+
"curly": true,
11+
12+
"devel": true,
13+
14+
"browser":true,
15+
"jquery":true,
16+
"predef": [
17+
"angular",
18+
"define",
19+
"require",
20+
"app"
21+
]
22+
}

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Angular File Upload
2+
3+
---
4+
5+
## About
6+
7+
**Angular File Upload** is a module for the [AngularJS](http://angularjs.org/) framework. Supports drag-n-drop upload, upload progress, validation filters and a file upload queue. It supports native HTML5 uploads, but degrades to a legacy iframe upload method for older browsers. Works with any server side platform which supports standard HTML form uploads.
8+
9+
When files are selected or dropped into the component, one or more filters are applied. Files which pass all filters are added to the queue. When file is added to the queue, for him is created instance of `{FileItem}` and uploader options are copied into this object. After, items in the queue (FileItems) are ready for uploading.
10+
11+
You could find this module in bower like [_angular file upload_](http://bower.io/search/?q=angular%20file%20upload).
12+
13+
## Demos
14+
1. [Simple example](http://nervgh.github.io/pages/angular-file-upload/examples/simple)
15+
2. [Uploads only images (with canvas preview)](http://nervgh.github.io/pages/angular-file-upload/examples/image-preview)
16+
3. [Without bootstrap example](http://nervgh.github.io/pages/angular-file-upload/examples/without-bootstrap)
17+
18+
## More Info
19+
20+
1. [Introduction](https://github.com/nervgh/angular-file-upload/wiki/Introduction)
21+
2. [Module API](https://github.com/nervgh/angular-file-upload/wiki/Module-API)
22+
3. [FAQ](https://github.com/nervgh/angular-file-upload/wiki/FAQ)
23+
4. [Migrate from 0.x.x to 1.x.x](https://github.com/nervgh/angular-file-upload/wiki/Migrate-from-0.x.x-to-1.x.x)
24+
5. [RubyGem](https://github.com/marthyn/angularjs-file-upload-rails)

bower.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "angular-file-upload",
3+
"main": "angular-file-upload.min.js",
4+
"homepage": "https://github.com/nervgh/angular-file-upload",
5+
"ignore": ["examples"],
6+
"dependencies": {
7+
"angular": "~1.2.11"
8+
},
9+
"devDependencies": {
10+
"es5-shim": ">=3.4.0"
11+
},
12+
"keywords": [
13+
"angular",
14+
"file",
15+
"upload",
16+
"module"
17+
]
18+
}

0 commit comments

Comments
 (0)