Forked from zaemiel/CKEditor installation and integration with Active Admin
Created
October 11, 2022 08:00
-
-
Save hdchinh/49613a9e96447f6c5d7f38f7a580350c to your computer and use it in GitHub Desktop.
CKEditor installation and integration with Active Admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Gemfile | |
gem 'ckeditor', github: 'galetahub/ckeditor' | |
2. bundle install | |
3. app/assets/javascripts/application.js | |
//= require ckeditor/init | |
4. config/initializers/active_admin.rb | |
config.register_javascript 'ckeditor/init.js' | |
5. Usage with Active Admin: | |
app/admin/model.rb | |
form do |f| | |
f.input :description, as: :ckeditor | |
end | |
Links: | |
https://github.com/galetahub/ckeditor | |
https://github.com/activeadmin/activeadmin/wiki/Ckeditor-integration | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment