plugin.js 867 B

12345678910111213141516171819202122232425262728
  1.  CKEDITOR.plugins.add('einsertpage',
  2. {
  3. init: function(editor)
  4. {
  5. //plugin code goes here
  6. var pluginName = 'einsertpage';
  7. //CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/flvPlayer.js');
  8. editor.addCommand(pluginName,{exec:function(editor){
  9. var pagestr='';
  10. pagestr=prompt('分页标题(不写请直接点确定)','');
  11. if(pagestr!=''&&pagestr!=null)
  12. {
  13. pagestr=pagestr+'[/!--empirenews.page--]';
  14. }
  15. if(pagestr==null)
  16. {return '';}
  17. editor.insertHtml('[!--empirenews.page--]'+pagestr);
  18. }});
  19. editor.ui.addButton('einsertpage',
  20. {
  21. label: '插入分页符',
  22. command: pluginName,
  23. icon: this.path + 'images/insertpage.gif'
  24. });
  25. }
  26. });