source: sandbox/3.0/phpgwapi/js/ckeditor/_source/plugins/wsc/plugin.js @ 2862

Revision 2862, 1.0 KB checked in by rodsouza, 14 years ago (diff)

Ticket #663 - Atualizando e centralizando o CKEditor (v. 3.2.1)

Line 
1/*
2Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6/**
7 * @file Spell checker
8 */
9
10// Register a plugin named "wsc".
11CKEDITOR.plugins.add( 'wsc',
12{
13        requires : [ 'dialog' ],
14        init : function( editor )
15        {
16                var commandName = 'checkspell';
17
18                var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
19
20                // SpellChecker doesn't work in Opera and with custom domain
21                command.modes = { wysiwyg : ( !CKEDITOR.env.opera && document.domain == window.location.hostname ) };
22
23                editor.ui.addButton( 'SpellChecker',
24                        {
25                                label : editor.lang.spellCheck.toolbar,
26                                command : commandName
27                        });
28                CKEDITOR.dialog.add( commandName, this.path + 'dialogs/wsc.js' );
29        }
30});
31
32CKEDITOR.config.wsc_customerId                  = CKEDITOR.config.wsc_customerId || '1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk' ;
33CKEDITOR.config.wsc_customLoaderScript  = CKEDITOR.config.wsc_customLoaderScript || null;
Note: See TracBrowser for help on using the repository browser.