angular-file-upload-rails 1.6.1.1 → 1.6.1.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1289bb341875be16f01eb12ca277ba3ecbf506a2
|
4
|
+
data.tar.gz: 483ba45f3ade28eab02b5424c2550940b9bd6c37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75c28cbb898af2e77fcd5b67de850420f64d7c66e1464cebe203ee11e4b353d26be668692d1fccdcf930315f7a9f30059d7f74b887906afa03990645c0e1218b
|
7
|
+
data.tar.gz: 802f3eef9c2a869b9a6a4302be1f2faba32a2eb73af1e7aed92db539c731c2a17a646a915c7f9bf3b9e84208f1828c328fced7385009ee61292be06ceb74c489
|
data/README.md
CHANGED
@@ -27,3 +27,10 @@ Lastly, be sure to include it in your JavaScript manifest (e.g. `application.js`
|
|
27
27
|
```
|
28
28
|
\* *be sure that angular is required before angular-file-upload*
|
29
29
|
|
30
|
+
**Important**: According to the angular-file-upload readme, if you wish to use the shim to support upload progress / abort for HTML5 and non-HTML5 FormData browsers, the shim javascript file must be included *before* angular.js, while the regular angular-file-upload being required after angular. For example in `application.js`:
|
31
|
+
|
32
|
+
```
|
33
|
+
//= require angular-file-upload/angular-file-upload-shim
|
34
|
+
//= require angular
|
35
|
+
//= require angular-file-upload
|
36
|
+
```
|
@@ -0,0 +1 @@
|
|
1
|
+
//= require angular-file-upload/angular-file-upload
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: angular-file-upload-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.1.
|
4
|
+
version: 1.6.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joe DiVita
|
@@ -66,12 +66,13 @@ files:
|
|
66
66
|
- README.md
|
67
67
|
- Rakefile
|
68
68
|
- angular-file-upload-rails.gemspec
|
69
|
+
- app/assets/javascripts/angular-file-upload.js
|
69
70
|
- app/assets/javascripts/angular-file-upload/FileAPI.flash.swf
|
70
71
|
- app/assets/javascripts/angular-file-upload/FileAPI.min.js
|
71
72
|
- app/assets/javascripts/angular-file-upload/angular-file-upload-html5-shim.js
|
72
73
|
- app/assets/javascripts/angular-file-upload/angular-file-upload-shim.js
|
73
74
|
- app/assets/javascripts/angular-file-upload/angular-file-upload.js
|
74
|
-
- lib/angular-file-upload.rb
|
75
|
+
- lib/angular-file-upload-rails.rb
|
75
76
|
- lib/angular-file-upload/rails.rb
|
76
77
|
- lib/angular-file-upload/version.rb
|
77
78
|
homepage: https://github.com/joedivita/angular-file-upload-rails
|