我已经安装并配置了WYSIWYG模块(最新开发者)以使用CKEditor,并且我已经将最新版本的CKEditor(最新完整版本)下载到sites/all/libraries
。我可以使用编辑器。
我需要自定义一些其他内容,因此我要将配置更改应用于中的config.js sites/all/libraries/ckeditor/config.js
。但是,似乎该文件甚至没有被使用或读取。我通过如下调整库存config.js
来检验该假设:
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here. For example:
config.allowedContent = true;
alert('Hello!');
};
alert('World!');
每当我打开编辑器,我希望得到一个或两个警报,一个说无论是Hello!
或World!
或两者兼而有之。但是,没有启动警报窗口。
使用WYSIWYG模块时,如何自定义CKEditor的配置?