Sha256: 74f4545decae8a80a2d3beff72e0ee068b350474e7c9cad9ddcbc85baca8b92b

Contents?: true

Size: 819 Bytes

Versions: 5

Compression:

Stored size: 819 Bytes

Contents

/**
 * plugin.js
 *
 * Released under LGPL License.
 * Copyright (c) 1999-2015 Ephox Corp. All rights reserved
 *
 * License: http://www.tinymce.com/license
 * Contributing: http://www.tinymce.com/contributing
 */

/*jshint unused:false */
/*global tinymce:true */

/**
 * Register the plugin, specifying the list of the plugins that this plugin depends on.  They are specified in a list,
 * with the list loaded in order. plugins in this list will be initialised when this plugin is initialized. (before the
 * init method is called). plugins in a depends list should typically be specified using the short name). If necessary
 * this can be done with an object which has the url to the plugin and the shortname.
 */
tinymce.PluginManager.add('example_dependency', function() {
	// Example logic here
}, ['example']);

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
goldencobra-2.3.4 app/assets/javascripts/goldencobra/html_editors/tinymce_v4/plugins/example_dependency/plugin.js
goldencobra-2.3.3 app/assets/javascripts/goldencobra/html_editors/tinymce_v4/plugins/example_dependency/plugin.js
spiderfw-1.0.1 apps/core/components/public/js/tinymce/plugins/example_dependency/plugin.js
spiderfw-1.0.0 apps/core/components/public/js/tinymce/plugins/example_dependency/plugin.js
spiderfw-0.6.39 apps/core/components/public/js/tinymce/plugins/example_dependency/plugin.js