[ 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
/
table
/
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.table.demo.Demo', [ 'tinymce.core.EditorManager', 'tinymce.plugins.code.Plugin', 'tinymce.plugins.table.Plugin', 'tinymce.themes.modern.Theme' ], function (EditorManager, CodePlugin, TablePlugin, ModernTheme) { return function () { CodePlugin(); TablePlugin(); ModernTheme(); EditorManager.init({ selector: "textarea.tinymce", theme: "modern", skin_url: "../../../../../skins/lightgray/dist/lightgray", plugins: "table code", toolbar: "table code", media_dimensions: false, // media_live_embeds: false, // media_url_resolver: function (data, resolve) { // resolve({ // html: '<iframe src="' + data.url + '" width="560" height="314" allowfullscreen="allowfullscreen"></iframe>'}); // }, height: 600 }); }; } );