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