plugin.js 610 B

1234567891011121314151617181920
  1.  CKEDITOR.plugins.add('einsertbr',
  2. {
  3. init: function(editor)
  4. {
  5. //plugin code goes here
  6. var pluginName = 'einsertbr';
  7. //CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/flvPlayer.js');
  8. editor.addCommand(pluginName,{exec:function(editor){
  9. editor.insertHtml('<br/>');
  10. }});
  11. editor.ui.addButton('einsertbr',
  12. {
  13. label: '插入<br>',
  14. command: pluginName,
  15. icon: this.path + 'images/insertbr.gif'
  16. });
  17. }
  18. });