You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Place it under ckeditor/skins folder, if you dont have skins folder then you need create one.
Add below line to ckeditor/config.js file.
CKEDITOR.editorConfig = function (config) { config.skin = 'bootstrapck'; }
Note: bootstrapck is the name of the skin.
Add //= require_tree ./ckeditor to your application.js file.
Also, you have to write //= require_tree . before //= require_tree ./ckeditor in order to complie and load other js files in the directory.