Sha256: 087089849c041760c54176d863ad102ff9745e8e976f64f659eb4bd127ef13f4
Contents?: true
Size: 1.12 KB
Versions: 11
Compression:
Stored size: 1.12 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 ) { config.language = 'ru'; 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;h4;h5;h6;pre'; // Make dialogs simpler. config.removeDialogTabs = 'image:advanced;link:advanced'; config.allowedContent = true; };
Version data entries
11 entries across 11 versions & 1 rubygems