Sha256: 80af9297283a14f4db26fbf09a062f2aace2924252fdfc6623265ffe26f2e29d
Contents?: true
Size: 1.33 KB
Versions: 14
Compression:
Stored size: 1.33 KB
Contents
CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. // For the complete reference: // http://docs.ckeditor.com/#!/api/CKEDITOR.config // The toolbar groups arrangement, optimized for two toolbar rows. config.toolbarGroups = [ { name: 'styles' }, { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, { name: 'links' }, { name: 'insert' }, { name: 'forms' }, { name: 'others' }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, { name: 'colors' }, { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, { name: 'tools' }, ]; // Remove some buttons, provided by the standard plugins, which we don't // need to have in the Standard(s) toolbar. config.removeButtons = 'Underline,Subscript,Superscript'; // Se the most common block elements. config.format_tags = 'p;h1;h2;h3;pre'; // Make dialogs simpler. config.removeDialogTabs = 'image:advanced;link:advanced'; // "Read more" plugin config.extraPlugins = 'wpmore'; // URL to upload images with image plugin config.filebrowserUploadUrl = '<%= Rails.application.routes.url_helpers.blogo_admin_images_path %>'; // Height config.height = '350px'; };
Version data entries
14 entries across 14 versions & 1 rubygems