0

我在我的编辑器中添加了 CKEdiotr LineHeight 插件。

当我没有从配置文件设置任何工具栏配置时,它工作正常,但是当我启用我的工具栏设置它的隐藏时。

我的工具栏设置与“行高”配置设置如下

config.extraPlugins = 'lineheight';
config.line_height = "10px;12px;13px;14px;15px;16px;";

config.toolbar = [
    { name: 'basicstyles', groups: ['basicstyles', 'cleanup'], items: ['Bold', 'Italic', 'Underline', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] },
    { name: 'styles', items: ['Font', 'FontSize', 'TextColor', 'BGColor'] }];

请让我知道我在哪里失踪。config.toolbar我想我想在项目列表中添加项目名称

4

1 回答 1

1

我希望你现在已经解决了。对于有此问题的人,您需要lineheight在项目列表中添加。

例子:

{
    name: 'styles',
    items: ['Font', 'lineheight', 'FontSize', 'TextColor', 'BGColor']
};
于 2015-05-28T10:41:24.227 回答