如何删除ckeditor中的表单工具,并使大小可调

mym*_*and 2 ckeditor

我在我的项目中使用CKE编辑器.我的要求是删除" FORM TOOLS"并使CKE编辑器的大小ADJUSTABLE.到目前为止,我已成功在网页中显示编辑器.我搜索谷歌但不幸的是我什么都没有.请帮助我.

小智 7

试试吧

CKEDITOR.editorConfig = function( config ) {
    // Define changes to default configuration here. For example:
    // config.language = 'fr';
    // config.uiColor = '#AADC6E';
    config.removePlugins = 'forms';
};
Run Code Online (Sandbox Code Playgroud)