PHP Classes

File: public/js/tinymce/src/plugins/help/src/demo/js/demo/Demo.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/plugins/help/src/demo/js/demo/Demo.js   Download  
File: public/js/tinymce/src/plugins/help/src/demo/js/demo/Demo.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 1,955 bytes
 

Contents

Class file image Download
/** * 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.help.demo.Demo', [ 'tinymce.core.EditorManager', 'tinymce.core.PluginManager', 'tinymce.plugins.help.Plugin', 'tinymce.plugins.link.Plugin', 'tinymce.plugins.table.Plugin', 'tinymce.plugins.paste.Plugin', 'tinymce.plugins.code.Plugin', 'tinymce.plugins.emoticons.Plugin', 'tinymce.plugins.fullpage.Plugin', 'tinymce.plugins.print.Plugin', 'tinymce.plugins.fullscreen.Plugin', 'tinymce.plugins.advlist.Plugin', 'tinymce.plugins.anchor.Plugin', 'tinymce.plugins.bbcode.Plugin', 'tinymce.plugins.colorpicker.Plugin', 'tinymce.plugins.textcolor.Plugin', 'tinymce.themes.modern.Theme' ], function (EditorManager, PluginManager, HelpPlugin, LinkPlugin, TablePlugin, PastePlugin, CodePlugin, EmoticonsPlugin, FullpagePlugin, PrintPlugin, FullscreenPlugin, AdvListPlugin, AnchorPlugin, BBcodePlugin, ColorpickerPlugin, TextcolorPlugin, ModernTheme) { return function () { HelpPlugin(); ModernTheme(); LinkPlugin(); TablePlugin(); PastePlugin(); CodePlugin(); EmoticonsPlugin(); FullpagePlugin(); PrintPlugin(); FullscreenPlugin(); AdvListPlugin(); AnchorPlugin(); BBcodePlugin(); ColorpickerPlugin(); TextcolorPlugin(); PluginManager.urls.help = '../../../dist/help'; EditorManager.init({ selector: "textarea.tinymce", theme: "modern", skin_url: "../../../../../skins/lightgray/dist/lightgray", plugins: "help link table paste code emoticons fullpage print fullscreen advlist anchor bbcode colorpicker textcolor", toolbar: "help", height: 600 }); }; } );