Sha256: 95e59217020a9ddb287027cce10e4a2734bb67c51086ae104b6ab6d859b4c715
Contents?: true
Size: 1.2 KB
Versions: 64
Compression:
Stored size: 1.2 KB
Contents
/** * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: config.language = 'ru'; // config.uiColor = '#AADC6E'; config.toolbarGroups = [ { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, { name: 'editing', groups: [ 'find', 'selection'] }, { name: 'links' }, { name: 'insert' }, { name: 'tools' }, { name: 'others' }, { name: 'iframe'}, '/', { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align' ] }, { name: 'styles' }, { name: 'colors' } ]; // Remove some buttons, provided by the standard plugins, which we don't // need to have in the Standard(s) toolbar. config.removeButtons = 'Smiley,PageBreak,Flash'; // Se the most common block elements. config.format_tags = 'p;h1;h2;h3;pre'; // Make dialogs simpler. config.removeDialogTabs = 'image:advanced;link:advanced'; config.allowedContent = true; };
Version data entries
64 entries across 64 versions & 3 rubygems