6056 |
efrain |
1 |
/**
|
|
|
2 |
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
|
|
|
3 |
* For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
|
|
|
4 |
*/
|
|
|
5 |
|
|
|
6 |
CKEDITOR.editorConfig = function( config ) {
|
|
|
7 |
config.language = 'es';
|
|
|
8 |
config.toolbar = [
|
|
|
9 |
{name: 'document', items: ['Source', '-','Preview', '-', 'Templates']},
|
|
|
10 |
{name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo']},
|
|
|
11 |
{name: 'editing', items: ['Find', 'Replace', '-', 'SelectAll', '-', 'Scayt']},
|
|
|
12 |
{name: 'forms', items: ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField']},
|
|
|
13 |
{name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'Subscript', 'Superscript', '-', 'CopyFormatting']},
|
|
|
14 |
{name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl', 'Language']},
|
|
|
15 |
{name: 'links', items: ['Link', 'Unlink']},
|
|
|
16 |
{name: 'insert', items: ['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak', 'Iframe']},
|
|
|
17 |
{name: 'styles', items: ['Format', 'Font', 'FontSize']},
|
|
|
18 |
{name: 'colors', items: ['TextColor', 'BGColor']},
|
|
|
19 |
{name: 'tools', items: ['Maximize', 'ShowBlocks']},
|
|
|
20 |
]
|
|
|
21 |
};
|