我使用基本版4.7.3/basic/ckeditor.js
并想知道如何删除"关于"和"编号列表"的按钮。
知道我该怎么做?
<ckeditor
[(ngModel)]="work.points"
[config]="{removePlugins: 'About'}">
</ckeditor>
这不起作用。我尝试使用removeButtons: 'About'
,但似乎添加了更多按钮,而不是删除“关于”按钮!
答案 0 :(得分:0)
您编辑config.js并执行:
config.removePlugins = 'about';
config.removeButtons = 'About';
您也可以自己创建工具栏,而不是添加&#39;关于&#39;按钮。