使用CK编辑器中的类名设置插件工具栏图标

时间:2017-01-12 18:40:15

标签: ckeditor ckeditor4.x

如何使用类名设置插件和/或窗口小部件工具栏按钮图标(而不是使用图片URL)?

1 个答案:

答案 0 :(得分:1)

我发现了这个看似明显缺失的功能的黑客攻击:

editor.ui.addButton('MyButton', {
    //className: '...' // this only adds the classes to the parent container, not the icon span
    icon: '_ fa fa-scissors _'  // this hacks the existing classes and injects extra classes to the icon span
});

使用CK Editor v4.6.2进行测试