plugin.js 582 B

1234567891011121314151617181920212223
  1. (function(){
  2. //Section 1 : 按下自定义按钮时执行的代码
  3. var a= {
  4. exec:function(editor)
  5. {
  6. //addClick();
  7. editor.insertHtml("${发件人}");
  8. }
  9. },
  10. //Section 2 : 创建自定义按钮、绑定方法
  11. b='sendperson';
  12. CKEDITOR.plugins.add(b,{
  13. init:function(editor){
  14. editor.addCommand(b,a);
  15. editor.ui.addButton('sendperson',{
  16. label:'插入发件人',
  17. icon: this.path + 'group.png',
  18. command:b
  19. });
  20. }
  21. });
  22. })();