plugin.js 639 B

123456789101112131415161718192021
  1. ( function() {
  2. CKEDITOR.plugins.add('equotetext',
  3. {
  4. init: function(editor)
  5. {
  6. //plugin code goes here
  7. var pluginName = 'equotetext';
  8. CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/equotetext.js');
  9. editor.addCommand(pluginName, new CKEDITOR.dialogCommand(pluginName));
  10. editor.ui.addButton('equotetext',
  11. {
  12. label: '插入引用',
  13. command: pluginName,
  14. icon: this.path + 'images/equotetext.gif',
  15. toolbar: 'equotetext'
  16. });
  17. }
  18. })
  19. } )();