Sha256: 220c5c5adbd05141be906ef6fb11b6ee6971f270dc6d97923f8e0ee2e06cfc60

Contents?: true

Size: 1.53 KB

Versions: 8

Compression:

Stored size: 1.53 KB

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 */

/**
 * Example plugin that adds a toolbar button and menu item.
 */
tinymce.PluginManager.add('example', function(editor, url) {
	// Add a button that opens a window
	editor.addButton('example', {
		text: 'My button',
		icon: false,
		onclick: function() {
			// Open window
			editor.windowManager.open({
				title: 'Example plugin',
				body: [
					{type: 'textbox', name: 'title', label: 'Title'}
				],
				onsubmit: function(e) {
					// Insert content when the window form is submitted
					editor.insertContent('Title: ' + e.data.title);
				}
			});
		}
	});

	// Adds a menu item to the tools menu
	editor.addMenuItem('example', {
		text: 'Example plugin',
		context: 'tools',
		onclick: function() {
			// Open window with a specific url
			editor.windowManager.open({
				title: 'TinyMCE site',
				url: url + '/dialog.html',
				width: 600,
				height: 400,
				buttons: [
					{
						text: 'Insert',
						onclick: function() {
							// Top most window object
							var win = editor.windowManager.getWindows()[0];

							// Insert the contents of the dialog.html textarea into the editor
							editor.insertContent(win.getContentWindow().document.getElementById('content').value);

							// Close the window
							win.close();
						}
					},

					{text: 'Close', onclick: 'close'}
				]
			});
		}
	});
});

Version data entries

8 entries across 8 versions & 1 rubygems

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