Sha256: 873f80cc992c369eac0b1d9116c4b071fee6d8f75b264cf298cc2acc3d0dcc0f

Contents?: true

Size: 795 Bytes

Versions: 8

Compression:

Stored size: 795 Bytes

Contents

/**
 * plugin.js
 *
 * Copyright, Moxiecode Systems AB
 * Released under LGPL License.
 *
 * 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

8 entries across 8 versions & 1 rubygems

Version Path
mirador_rails-0.3.3 vendor/assets/plugins/plugins/example_dependency/plugin.js
mirador_rails-0.3.2 vendor/assets/plugins/plugins/example_dependency/plugin.js
mirador_rails-0.3.1 vendor/assets/plugins/plugins/example_dependency/plugin.js
mirador_rails-0.3.0 vendor/assets/plugins/plugins/example_dependency/plugin.js
mirador_rails-0.1.1 vendor/assets/plugins/plugins/example_dependency/plugin.js
mirador_rails-0.2.1 vendor/assets/plugins/plugins/example_dependency/plugin.js
mirador_rails-0.2.0 vendor/assets/plugins/plugins/example_dependency/plugin.js
mirador_rails-0.1.0 vendor/assets/plugins/plugins/example_dependency/plugin.js