Skip to content

Commit dc97316

Browse files
committed
v0.2.9
1 parent e9b8abc commit dc97316

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ActiveAdmin Quill Editor [![Gem Version](https://badge.fury.io/rb/activeadmin_quill_editor.svg)](https://badge.fury.io/rb/activeadmin_quill_editor) [![CircleCI](https://circleci.com/gh/blocknotes/activeadmin_quill_editor.svg?style=svg)](https://circleci.com/gh/blocknotes/activeadmin_quill_editor)
22

3-
An Active Admin plugin to use [Quill Rich Text Editor](https://github.com/quilljs/quill)
3+
An Active Admin plugin to use [Quill Rich Text Editor](https://github.com/quilljs/quill) in form fields.
44

55
![screenshot](screenshot.png)
66

@@ -18,7 +18,7 @@ An Active Admin plugin to use [Quill Rich Text Editor](https://github.com/quillj
1818
```
1919
- Use the input with `as: :quill_editor` in Active Admin model conf
2020

21-
Why 2 separated scripts? In this way you can include a different version of *quill editor* if you like.
21+
Why 2 separated scripts/styles? In this way you can include a different version of *quill editor* if you like.
2222

2323
> **UPDATE FROM VERSION <= 2.0**: please add to your _app/assets/stylesheets/active_admin.scss_ the line `@import 'activeadmin/quill_editor/quill.snow';`
2424
@@ -44,11 +44,11 @@ Why 2 separated scripts? In this way you can include a different version of *qui
4444
### Toolbar buttons configuration
4545

4646
```ruby
47-
f.input :description, as: :quill_editor, input_html: {data: {options: {modules: {toolbar: [['bold', 'italic', 'underline'], ['link']]}, placeholder: 'Type something...', theme: 'snow'}}}
47+
f.input :description, as: :quill_editor, input_html: { data: { options: { modules: { toolbar: [['bold', 'italic', 'underline'], ['link']] }, placeholder: 'Type something...', theme: 'snow' } } }
4848
```
4949

5050
## Notes
51-
- Upload functions (Images, Documents, Files, etc.) are not implemented yet
51+
- Upload features (images/documents/files): not tested yet.
5252

5353
## Do you like it? Star it!
5454
If you use this component just star it. A developer is more motivated to improve a project when there is some interest.
@@ -60,4 +60,4 @@ Take a look at [other Active Admin components](https://github.com/blocknotes?utf
6060
- The good guys that opened issues and pull requests from time to time
6161

6262
## License
63-
- The gem is available as open-source under the terms of the [MIT](LICENSE.txt)
63+
The gem is available as open-source under the terms of the [MIT](LICENSE.txt).

lib/activeadmin/quill_editor/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module ActiveAdmin
44
module QuillEditor
5-
VERSION = '0.2.8'
5+
VERSION = '0.2.9'
66
end
77
end

0 commit comments

Comments
 (0)