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.
 
 
 
 
 

31 lines
648 B

  1. /**
  2. * plugin.js
  3. *
  4. * Released under LGPL License.
  5. * Copyright (c) 1999-2015 Ephox Corp. All rights reserved
  6. *
  7. * License: http://www.tinymce.com/license
  8. * Contributing: http://www.tinymce.com/contributing
  9. */
  10. /*global tinymce:true */
  11. tinymce.PluginManager.add('hr', function(editor) {
  12. editor.addCommand('InsertHorizontalRule', function() {
  13. editor.execCommand('mceInsertContent', false, '<hr />');
  14. });
  15. editor.addButton('hr', {
  16. icon: 'hr',
  17. tooltip: 'Horizontal line',
  18. cmd: 'InsertHorizontalRule'
  19. });
  20. editor.addMenuItem('hr', {
  21. icon: 'hr',
  22. text: 'Horizontal line',
  23. cmd: 'InsertHorizontalRule',
  24. context: 'insert'
  25. });
  26. });