source: sapic/static/plugins/ckeditor/config.js @ bc01af3

erwinexplicacion_situacionalgestion_usuariostaller_django
Last change on this file since bc01af3 was 10f099e, checked in by lhernandez <lhernandez@…>, 7 años ago

Se desarrollo e implemento el registro de oraganizaciones, preparando para asociar voceros al registro

  • Propiedad mode establecida a 100755
File size: 1.3 KB
Línea 
1/**
2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6CKEDITOR.editorConfig = function( config ) {
7        // Define changes to default configuration here.
8        // For complete reference see:
9        // http://docs.ckeditor.com/#!/api/CKEDITOR.config
10
11        // The toolbar groups arrangement, optimized for two toolbar rows.
12        config.toolbarGroups = [
13                { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
14                { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
15                { name: 'links' },
16                { name: 'insert' },
17                { name: 'forms' },
18                { name: 'tools' },
19                { name: 'document',        groups: [ 'mode', 'document', 'doctools' ] },
20                { name: 'others' },
21                '/',
22                { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
23                { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
24                { name: 'styles' },
25                { name: 'colors' },
26                { name: 'about' }
27        ];
28
29        // Remove some buttons provided by the standard plugins, which are
30        // not needed in the Standard(s) toolbar.
31        config.removeButtons = 'Underline,Subscript,Superscript';
32
33        // Set the most common block elements.
34        config.format_tags = 'p;h1;h2;h3;pre';
35
36        // Simplify the dialog windows.
37        config.removeDialogTabs = 'image:advanced;link:advanced';
38};
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.