删除CKEditor Angular 4中的按钮

时间:2017-12-01 16:45:42

标签: angular ckeditor ckeditor4.x

我使用基本版4.7.3/basic/ckeditor.js并想知道如何删除"关于"和"编号列表"的按钮。

知道我该怎么做?

<ckeditor
  [(ngModel)]="work.points"
  [config]="{removePlugins: 'About'}">
</ckeditor>

这不起作用。我尝试使用removeButtons: 'About',但似乎添加了更多按钮,而不是删除“关于”按钮!

1 个答案:

答案 0 :(得分:0)

您编辑config.js并执行:

config.removePlugins = 'about';
config.removeButtons = 'About';

您也可以自己创建工具栏,而不是添加&#39;关于&#39;按钮。