我正在使用 CKEditor v4.0 和 ckeditor gem https://github.com/tsechingho/ckeditor-rails
宝石文件
gem 'ckeditor', '>= 4.0.0.rc1'
配置.js
CKEDITOR.editorConfig = function( config ){
config.skin = 'moono',
config.disableNativeSpellChecker = true,
config.scayt_autoStartup = true,
config.toolbar = [
[ 'Bold', 'Italic', 'Underline', 'Strike', 'Blockquote', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', '-', 'SpellChecker', 'Scayt' ]
]
};
我一直在测试许多可能的解决方案,我认为这是 v4.0 的问题
在这里http://drupal.org/node/1870398名为“vinmassaro”的用户发布说,如果您在工具栏上设置“键入时进行拼写检查”,它会起作用,因为这两种类型的拼写检查是在一个按钮中压缩的,但不会起作用,甚至没有显示它的工具栏按钮:S