Sha256: b8d5078db0c8a2f4b09a27f29d704a49fa35a37645b5f8d707a098805fe7a27a

Contents?: true

Size: 589 Bytes

Versions: 3

Compression:

Stored size: 589 Bytes

Contents

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

CKEDITOR.plugins.add( 'docprops',
{
	init : function( editor )
	{
		var cmd = new CKEDITOR.dialogCommand( 'docProps' );
		// Only applicable on full page mode.
		cmd.modes = { wysiwyg : editor.config.fullPage };
		editor.addCommand( 'docProps', cmd );
		CKEDITOR.dialog.add( 'docProps', this.path + 'dialogs/docprops.js' );

		editor.ui.addButton( 'DocProps',
		{
			label : editor.lang.docprops.label,
			command : 'docProps'
		});
	}
});

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
ckeditor-rails-0.0.4 vendor/assets/ckeditor/ckeditor/_source/plugins/docprops/plugin.js
ckeditor-rails-0.0.3 vendor/assets/ckeditor/ckeditor/_source/plugins/docprops/plugin.js
typus-3.1.0.rc7 test/fixtures/rails_app/public/vendor/ckeditor/_source/plugins/docprops/plugin.js