OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
_backup
/
tinymce
/
tinymce
/
js
/
tinymce
/
plugins
/
hr
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/20/2020 05:39:43 AM
rwxr-xr-x
📄
plugin.js
1.33 KB
02/20/2020 05:37:27 AM
rw-r--r--
📄
plugin.min.js
838 bytes
02/20/2020 05:37:27 AM
rw-r--r--
Editing: plugin.js
Close
/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.cloud/ * * Version: 5.0.4 (2019-04-23) */ (function () { var hr = (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 }; global.add('hr', function (editor) { Commands.register(editor); Buttons.register(editor); }); function Plugin () { } return Plugin; }()); })();