我有一個問題,安裝COOPS
插件爲CKEDITOR
。 隨着CKBuiled
,我創建了一個CKE與coops插件,並且在我的Web服務器上傳CKE應用程序後,我在CKE文件夾的config.js
文件中設置了諸如readonly = true
和serverUrl等文檔中指示的東西,但是插件當我導航到CKE樣本時,不會開始。CKEDITOR - 在CKEDITOR上安裝Coops插件
我認爲,它是serverUrl
VALUE是錯誤的,我將它設置爲"/files"
(我可以在github上的coops-demo中看到)。
有人可以幫助我嗎? 代碼:
/**
* @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function(config) {
\t // Define changes to default configuration here. For example:
\t config.language = 'fr';
\t // config.uiColor = '#AADC6E';
config.extraPlugins = 'coops';
config.extraPlugins = 'change';
config.extraPlugins = 'coops-connector';
config.extraPlugins = 'coops-dmp';
config.extraPlugins = 'coops-cursors';
config.readOnly = true;
coops: {
serverUrl: '/files/';
}
};
粘貼編輯它,你在你的問題試圖代碼 – Viral