如何隐藏或删除CKEditor“折叠工具栏”按钮?

时间:2012-06-16 07:34:52

标签: ckeditor toolbar

我已经成功设置了CKEditor并且效果很好,但是折叠工具栏按钮(3)让我感到烦恼:

In the lower right-hand corner, there is a button with an upwards-facing arrow, circled with the label 3.

有没有办法隐藏或删除它?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:3)

来自source

您可以在plugins / toolbar / plugin.js

中轻松禁用它
CKEDITOR.replace( 'editor1', 
 {
    toolbarCanCollapse : false
 }
);

CKEDITOR.config.toolbarCanCollapse = false;