Skip to content
This repository was archived by the owner on May 18, 2025. It is now read-only.

Commit 606d19a

Browse files
committed
v0.2.9
1 parent e3e26a2 commit 606d19a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ An Active Admin plugin to use [medium-editor](https://github.com/yabwe/medium-ed
2525
- Use the input with `as: :medium_editor` in Active Admin model conf
2626
- **data-options**: permits to set *medium-editor* options directly - see [options list](https://github.com/yabwe/medium-editor#mediumeditor-options) (examples below)
2727

28-
> Why 2 separated scripts/styles? In this way you can include a different version of *medium-editor* if you like.
28+
> Why 2 separated scripts/styles? In this way you can include a different version of *medium-editor* if you like
2929
3030
> **UPDATE FROM VERSION < 2.8**: please change your _app/assets/stylesheets/active_admin.scss_ using the new import lines above
3131
@@ -34,9 +34,9 @@ An Active Admin plugin to use [medium-editor](https://github.com/yabwe/medium-ed
3434
### Basic usage
3535

3636
```ruby
37-
# Active Admin article form conf:
37+
# Active Admin post form conf:
3838
form do |f|
39-
f.inputs 'Article' do
39+
f.inputs 'Post' do
4040
f.input :title
4141
f.input :description, as: :medium_editor, input_html: { data: { options: '{"spellcheck":false,"toolbar":{"buttons":["bold","italic","underline","anchor"]}}' } }
4242
f.input :published

lib/activeadmin/medium_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 MediumEditor
5-
VERSION = '0.2.8'
5+
VERSION = '0.2.9'
66
end
77
end

0 commit comments

Comments
 (0)