jquery-file-upload 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -9
- data/lib/jquery-file-upload/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eddfdf2d92e4a834ad8e6a76d77d44cb6ca7d144
|
4
|
+
data.tar.gz: fa5a56e2e7d9969aa543671243167cbe156b8dd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c8c318bf706db518357f71a861c942525f18fede650b49b1d0e5768aa8d5cdc9ab7e87575f953b028e435b84da1106964b6e2e57321dafe61bb6b5163e1ef40
|
7
|
+
data.tar.gz: b9736626223171c5ca2026bf6a82115bab57fe3c637f3ab3568342165b4b298424d17d7b9f122cf09052e15ba52e1a1e6a6cb5c0fa813b3e75677fff531f775c
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@ Pre 1.0.0 is all a work in progress and I am committing as I go and as I add fea
|
|
11
11
|
|
12
12
|
Add this line to your application's Gemfile:
|
13
13
|
|
14
|
-
gem 'jquery-file-upload
|
14
|
+
gem 'jquery-file-upload'
|
15
15
|
|
16
16
|
And then execute:
|
17
17
|
|
@@ -19,7 +19,7 @@ And then execute:
|
|
19
19
|
|
20
20
|
Or install it yourself as:
|
21
21
|
|
22
|
-
$ gem install jquery-file-upload
|
22
|
+
$ gem install jquery-file-upload
|
23
23
|
|
24
24
|
## Configuration
|
25
25
|
|
@@ -42,7 +42,7 @@ Somewhere in your view require upload and download template
|
|
42
42
|
= render 'jquery_file_upload/basic_plus_ui/download'
|
43
43
|
```
|
44
44
|
|
45
|
-
And form to upload files, default uploading field is :file attribute, but you can change it with
|
45
|
+
And form to upload files, default uploading field is :file attribute, but you can change it with `:as` param
|
46
46
|
```haml
|
47
47
|
= render 'jquery_file_upload/basic_plus_ui/form', file: Image.new, as: :image
|
48
48
|
```
|
@@ -52,12 +52,23 @@ On the bottom load jquery libraries
|
|
52
52
|
= javascript_include_tag 'jquery-file-upload'
|
53
53
|
```
|
54
54
|
|
55
|
-
Or require it in application.js.coffee
|
55
|
+
Or require it in `application.js.coffee`
|
56
56
|
```coffee
|
57
57
|
#= require jquery-file-upload
|
58
58
|
```
|
59
59
|
|
60
|
+
Add css to `application.css.scss`
|
61
|
+
```scss
|
62
|
+
*= require jquery-file-upload
|
63
|
+
```
|
64
|
+
|
60
65
|
## Change Log
|
66
|
+
#### 0.0.6
|
67
|
+
- **ADD** Readme Changelog documentation for `0.0.5` :P
|
68
|
+
|
69
|
+
##### 0.0.5
|
70
|
+
- **ADD** Added css rails require
|
71
|
+
- **BUG** Lots of errors with javascript
|
61
72
|
|
62
73
|
##### 0.0.4
|
63
74
|
- **FIXED** Configuration files now actually work and mean something!
|
@@ -72,11 +83,6 @@ Or require it in application.js.coffee
|
|
72
83
|
- **FIXED** Cleaned up the documentation a bit
|
73
84
|
- **FIXED** Javascript no longer 404s
|
74
85
|
|
75
|
-
#### 0.0.1
|
76
|
-
- Initial commit
|
77
|
-
- **BUG** The javascript 404s
|
78
|
-
|
79
|
-
|
80
86
|
[See the full change log](https://github.com/mikestephens/jquery-file-upload/wiki/Change-Log)
|
81
87
|
|
82
88
|
## Contributing
|