Nation Notes module contributed by Z&H Healthcare.
[openemr.git] / library / custom_template / ckeditor / _source / plugins / wsc / plugin.js
blob27e172558e830ff51953d1d15dc16a1f73761c88
1 /*
2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3 For licensing, see LICENSE.html or http://ckeditor.com/license
4 */
6 /**
7  * @file Spell checker
8  */
10 // Register a plugin named "wsc".
11 CKEDITOR.plugins.add( 'wsc',
13         requires : [ 'dialog' ],
14         init : function( editor )
15         {
16                 var commandName = 'checkspell';
18                 var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
20                 // SpellChecker doesn't work in Opera and with custom domain
21                 command.modes = { wysiwyg : ( !CKEDITOR.env.opera && !CKEDITOR.env.air && document.domain == window.location.hostname ) };
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 });
32 CKEDITOR.config.wsc_customerId                  = CKEDITOR.config.wsc_customerId || '1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk' ;
33 CKEDITOR.config.wsc_customLoaderScript  = CKEDITOR.config.wsc_customLoaderScript || null;