source: sandbox/2.3-MailArchiver/filemanager/tp/ckeditor/_source/plugins/find/plugin.js @ 6779

Revision 6779, 1.4 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado Expresso(branch 2.3) integrado ao MailArchiver?.

Line 
1/*
2Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6CKEDITOR.plugins.add( 'find',
7{
8        init : function( editor )
9        {
10                var forms = CKEDITOR.plugins.find;
11                editor.ui.addButton( 'Find',
12                        {
13                                label : editor.lang.findAndReplace.find,
14                                command : 'find'
15                        });
16                var findCommand = editor.addCommand( 'find', new CKEDITOR.dialogCommand( 'find' ) );
17                findCommand.canUndo = false;
18
19                editor.ui.addButton( 'Replace',
20                        {
21                                label : editor.lang.findAndReplace.replace,
22                                command : 'replace'
23                        });
24                var replaceCommand = editor.addCommand( 'replace', new CKEDITOR.dialogCommand( 'replace' ) );
25                replaceCommand.canUndo = false;
26
27                CKEDITOR.dialog.add( 'find',    this.path + 'dialogs/find.js' );
28                CKEDITOR.dialog.add( 'replace', this.path + 'dialogs/find.js' );
29        },
30
31        requires : [ 'styles' ]
32} );
33
34/**
35 * Defines the style to be used to highlight results with the find dialog.
36 * @type Object
37 * @default { element : 'span', styles : { 'background-color' : '#004', 'color' : '#fff' } }
38 * @example
39 * // Highlight search results with blue on yellow.
40 * config.find_highlight =
41 *     {
42 *         element : 'span',
43 *         styles : { 'background-color' : '#ff0', 'color' : '#00f' }
44 *     };
45 */
46CKEDITOR.config.find_highlight = { element : 'span', styles : { 'background-color' : '#004', 'color' : '#fff' } };
Note: See TracBrowser for help on using the repository browser.