ckeditor的自动拼写检查对中文语系的我们,其实沒有多大用处,反而在画面开启前,还要等待它与
svn.spellchecker.net的连接!
所以可以把它取消掉!
在网络上查到的有2个!
scayt_autoStartup = false; (这个我试过有效)
disableNativeSpellChecker=false; (这个我用了..沒效..)
提供给大家参考
If you want to disable the auto spell check function with ckedior, you should add the
setting below in your ckeditor config!
scayt_autoStartup = false;(This worked)
disableNativeSpellChecker=false;(….not worked)
drupal下修改模块根目录下的ckeditor.config.js :
CKEDITOR.editorConfig = function(config) {
config.scayt_autoStartup = false; //增加这一项即可去除ckeditor烦人的拼写检查
}
评论
发表新评论