如何使用类名设置插件和/或窗口小部件工具栏按钮图标(而不是使用图片URL)?
答案 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进行测试