Sha256: ed1ee69d3bb826ffef6a42fc33d3a431899626a18b31fab86209719a5dacf7c1

Contents?: true

Size: 1.45 KB

Versions: 88

Compression:

Stored size: 1.45 KB

Contents

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

CKEDITOR.plugins.add( 'find',
{
	init : function( editor )
	{
		var forms = CKEDITOR.plugins.find;
		editor.ui.addButton( 'Find',
			{
				label : editor.lang.findAndReplace.find,
				command : 'find'
			});
		var findCommand = editor.addCommand( 'find', new CKEDITOR.dialogCommand( 'find' ) );
		findCommand.canUndo = false;
		findCommand.readOnly = 1;

		editor.ui.addButton( 'Replace',
			{
				label : editor.lang.findAndReplace.replace,
				command : 'replace'
			});
		var replaceCommand = editor.addCommand( 'replace', new CKEDITOR.dialogCommand( 'replace' ) );
		replaceCommand.canUndo = false;

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

	requires : [ 'styles' ]
} );

/**
 * Defines the style to be used to highlight results with the find dialog.
 * @type Object
 * @default { element : 'span', styles : { 'background-color' : '#004', 'color' : '#fff' } }
 * @example
 * // Highlight search results with blue on yellow.
 * config.find_highlight =
 *     {
 *         element : 'span',
 *         styles : { 'background-color' : '#ff0', 'color' : '#00f' }
 *     };
 */
CKEDITOR.config.find_highlight = { element : 'span', styles : { 'background-color' : '#004', 'color' : '#fff' } };

Version data entries

88 entries across 85 versions & 9 rubygems

Version Path
rich-0.0.8 vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js
rich-0.0.7 test/dummy/public/assets/ckeditor/_source/plugins/find/plugin.js
rich-0.0.7 vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js
rich-0.0.6 vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js
quic_cms-0.1.3 app/assets/javascripts/quic_cms/ckeditor/_source/plugins/find/plugin.js
quic_cms-0.1.2 app/assets/javascripts/quic_cms/ckeditor/_source/plugins/find/plugin.js
quic_cms-0.1.1 app/assets/javascripts/quic_cms/ckeditor/_source/plugins/find/plugin.js
quic_cms-0.1.0 app/assets/javascripts/quic_cms/ckeditor/_source/plugins/find/plugin.js
quic_cms-0.0.9 app/assets/javascripts/quic_cms/ckeditor/_source/plugins/find/plugin.js
rich-0.0.4 test/dummy/public/assets/ckeditor/_source/plugins/find/plugin.js
rich-0.0.4 vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js
rich-0.0.3 vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js
radiant-ck_editor_filter-extension-0.2.5 public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/find/plugin.js
inline_forms-0.9.25 public/javascripts/ckeditor/_source/plugins/find/plugin.js
inline_forms-0.9.24 public/javascripts/ckeditor/_source/plugins/find/plugin.js
ckeditor-3.6.2 test/tmp/public/javascripts/ckeditor/_source/plugins/find/plugin.js
inline_forms-0.9.23 public/javascripts/ckeditor/_source/plugins/find/plugin.js
inline_forms-0.9.22 public/javascripts/ckeditor/_source/plugins/find/plugin.js
inline_forms-0.9.21 public/javascripts/ckeditor/_source/plugins/find/plugin.js
inline_forms-0.9.20 public/javascripts/ckeditor/_source/plugins/find/plugin.js