我不想在我的Rails-App中使用CKEditor。rails 4如何配置ckeditor 4.1
在我的Gemfile我加入這一行
gem 'ckeditor', :git => 'https://github.com/galetahub/ckeditor.git'
後,我跑「捆綁更新」和「軌產生的CKEditor:安裝--orm = active_record --backend =回形針」我添加到我的application.js這條線:
//= require ckeditor/init
在我看來
我加入這一行:
<%= f.cktext_area :img, :ckeditor => {:toolbar => 'img', :customConfig => asset_path('ckeditor/config.js')} %>
我創造了這個文件夾和網絡連接萊:
/app/assets/javascripts/ckeditor
/app/assets/javascripts/ckeditor/config.js
/app/assets/javascripts/ckeditor/contents.css
我config.js看起來是這樣的:
CKEDITOR.editorConfig = function(config)
{
config.toolbar_img = [
{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] },
]
}
爲什麼我的編輯器看起來像這樣?
什麼是你希望它是什麼? – Surya 2014-10-30 17:54:04
爲什麼它有這麼多工具欄?我不想只有新建頁面和預覽按鈕:) – Evolutio 2014-10-30 17:56:00
CKEditor中的'New Page'和'Preview button'在哪裏?你能發佈鏈接到你的代碼中添加的文檔配置嗎? – Surya 2014-10-30 18:00:19