4

我正在尝试使用 CKEditor 的 wordcouter 插件。我一直在关注这个,但它似乎不起作用。经过一番探索,我发现有许多不同的config.js文件和许多plugin目录。我应该使用哪一个?

app/assets/ckeditor/plugins/
app/assets/ckeditor/_source/plugins/
app/assets/javascripts/ckeditor/plugins/
app/assets/javascripts/ckeditor/_source/plugins/
app/assets/javascripts/ckeditor/_source/core/plugins.js
app/assets/ckeditor/_source/core/plugins.js

当我解压缩 wordcount 时,它给了我一个名为的目录wordcount_1.05,我应该将其重命名为 justwordcount吗?

我在我的config.js文件中输入以下内容:

config.extraPlugins = 'wordcount';

config.wordcount = {

      // Whether or not you want to show the Word Count
      showWordCount: true,

      // Whether or not you want to show the Char Count
      showCharCount: false
};

但这似乎根本没有做任何事情。如果我稍微修改它(这只适用于我的 app/assets/javascripts/ckeditor/config.js 文件)以使其:

CKEDITOR.config 然后我的文本框完全停止显示。所以我觉得这是要修改的正确文件。

谢谢您的帮助!

4

2 回答 2

3

将插件目录放在 app/assets/javascripts/ckeditor/plugins/ 中(在 Rails 4 中对我有用。)

于 2014-07-05T21:32:39.920 回答
0

您需要从这里下载通知插件http://ckeditor.com/addon/notification

于 2015-11-26T16:06:41.133 回答