[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
pmb2
/
assets
/
tinymce
/
src
/
plugins
/
paste
/
src
/
demo
/
js
/
demo
/
[
Home
]
File: Demo.js
/** * Demo.js * * Released under LGPL License. * Copyright (c) 1999-2017 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ /*eslint no-console:0 */ define( 'tinymce.plugins.paste.demo.Demo', [ 'tinymce.core.EditorManager', 'tinymce.plugins.code.Plugin', 'tinymce.plugins.paste.Plugin', 'tinymce.themes.modern.Theme' ], function (EditorManager, CodePlugin, PastePlugin, ModernTheme) { return function () { CodePlugin(); PastePlugin(); ModernTheme(); EditorManager.init({ selector: "textarea.tinymce", theme: "modern", skin_url: "../../../../../skins/lightgray/dist/lightgray", plugins: "paste code", toolbar: "undo redo | pastetext code", init_instance_callback: function (editor) { editor.on('PastePreProcess', function (evt) { console.log(evt); }); editor.on('PastePostProcess', function (evt) { console.log(evt); }); }, height: 600 }); }; } );