Sha256: d65f304b785a005d462f2b29624d27b8707a08e65cd9092de6473afba440a0e0

Contents?: true

Size: 942 Bytes

Versions: 47

Compression:

Stored size: 942 Bytes

Contents

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

/**
 * @file Paste as plain text plugin
 */

(function()
{
	// The pastetext command definition.
	var attachmentCmd =
	{
		exec : function( editor )
		{
		  editor.openDialog( 'attachment' );
		  return;
		}
	};
  
	// Register the plugin.
	CKEDITOR.plugins.add( 'attachment',
	{
	  lang : [ 'en', 'ru', 'uk' ],
	  requires : [ 'dialog' ],
	  
		init : function( editor )
		{ 
			var commandName = 'attachment';
			editor.addCommand( commandName, attachmentCmd );
      
			editor.ui.addButton( 'Attachment',
				{
					label : editor.lang.attachment.button,
					command : commandName,
					icon: this.path + "images/attachment.png"
				});
      
			CKEDITOR.dialog.add( commandName, CKEDITOR.getUrl( this.path + 'dialogs/attachment.js' ) );
		}
	});
	
})();

Version data entries

47 entries across 47 versions & 7 rubygems

Version Path
forge-cli-0.1.1 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.1.0 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.18 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.17 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.16 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.15 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.14 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.13 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.12 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.11 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.10 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.9 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.8 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.7 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
forge-cli-0.0.6 lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
inline_forms-0.9.25 public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
inline_forms-0.9.24 public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
inline_forms-0.9.23 public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
inline_forms-0.9.22 public/javascripts/ckeditor/_source/plugins/attachment/plugin.js
inline_forms-0.9.21 public/javascripts/ckeditor/_source/plugins/attachment/plugin.js