Default config overwrites custom one
Aetherus opened this issue · 7 comments
I created my app/assets/javascripts/config.js.coffee like this:
CKEDITOR.editorConfig = (config) ->
config.docType = ''
When I start up my server in development env and access the page, I noticed that the default ckeditor/config.js always executes AFTER my custom one, and my config gets ignored.
Here is my application.js:
//= require jquery
//= require jquery_ujs
//= require ckeditor-jquery
//= require ckeditor/config
//= require_tree .
Having this issue on Rails 4 too.
I'm having this issue too, I'm using Rails 4. Any idea on how to solve this?
try to put config.js.coffee
under app/assets/javascripts/ckeditor/
folder.
no need to put //= require ckeditor/config
in application.js
I had same issue, but restarting the server helped. I know sounds dumb... and I restarted server when just installed the gem. I guess it's related to autoloading of ckeditor/config
thing.
oh, yea need restart server after update that file.... thx for the tips
I am facing this problem in Rails 4 on heroku. It works fine locally.
The config.js
file is at app/assets/javascripts/ckeditor/config.js
.
Any suggestions?
Adding it to production.rb
fixed it on heroku.
config.assets.precompile += %w(ckeditor/config.js)