星火管控前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin.js 707B

1234567891011121314151617
  1. CKEDITOR.plugins.add('zimage', {
  2. icons: 'zimage',
  3. init: function (editor) {
  4. // 给自定义插件注册一个调用命令
  5. editor.addCommand('zimage', new CKEDITOR.dialogCommand('zimageDialog'));
  6. editor.ui.addButton('zimage', {
  7. // label为鼠标悬停时展示的字
  8. label: '添加图片',
  9. command: 'zimage',
  10. // 将插件放在哪一组toolbar, 像我这样写的话,将放在'insert'组的第一个,后面的数字是这个数据的下标
  11. toolbar: 'insert,0'
  12. });
  13. // 加载自定义窗口,'zimageDialog'跟上面调用命令的'zimageDialog'一致;
  14. CKEDITOR.dialog.add('zimageDialog', this.path + 'dialog/dialog.js');
  15. }
  16. });