Sha256: e621361bfd5e597289aafec050edd6df7411212bde1cdf3bb750cd3020f38f1f

Contents?: true

Size: 567 Bytes

Versions: 22

Compression:

Stored size: 567 Bytes

Contents

/*
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.plugins.add( 'about',
{
	init : function( editor )
	{
		var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
		command.modes = { wysiwyg:1, source:1 };
		command.canUndo = false;

		editor.ui.addButton( 'About',
			{
				label : editor.lang.about.title,
				command : 'about'
			});

		CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
	}
});

Version data entries

22 entries across 22 versions & 6 rubygems

Version Path
bcms_fckeditor-1.0.0 public/bcms/ckeditor/plugins/about/plugin.js
we5-browsercms-3.1.0 public/bcms/ckeditor/plugins/about/plugin.js