123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- (function () {
- 'use strict';
- var global = tinymce.util.Tools.resolve('tinymce.PluginManager');
- var register = function (editor) {
- editor.addCommand('InsertHorizontalRule', function () {
- editor.execCommand('mceInsertContent', false, '<hr />');
- });
- };
- var Commands = { register: register };
- var register$1 = function (editor) {
- editor.ui.registry.addButton('hr', {
- icon: 'horizontal-rule',
- tooltip: 'Horizontal line',
- onAction: function () {
- return editor.execCommand('InsertHorizontalRule');
- }
- });
- editor.ui.registry.addMenuItem('hr', {
- icon: 'horizontal-rule',
- text: 'Horizontal line',
- onAction: function () {
- return editor.execCommand('InsertHorizontalRule');
- }
- });
- };
- var Buttons = { register: register$1 };
- function Plugin () {
- global.add('hr', function (editor) {
- Commands.register(editor);
- Buttons.register(editor);
- });
- }
- Plugin();
- }());
|