Sha256: c06de6fa40807b2c641de0c75ef6553ef39dd6a168db1c5acaeb9bfdb66587a9

Contents?: true

Size: 1.75 KB

Versions: 13

Compression:

Stored size: 1.75 KB

Contents

/*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.editorConfig = function( config )
{
  config.PreserveSessionOnFileBrowser = true;
  // Define changes to default configuration here. For example:
  config.language = 'en';
  // config.uiColor = '#AADC6E';

  //config.ContextMenu = ['Generic','Anchor','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','Table','Form'] ;

  config.height = '400px';
  config.width = '600px';

  //config.resize_enabled = false;
  //config.resize_maxHeight = 2000;
  //config.resize_maxWidth = 750;

  //config.startupFocus = true;

  // works only with en, ru, uk languages
  config.extraPlugins = "embed,attachment,forge_assets";

  config.toolbar = 'Basic';

  config.toolbar_Easy =
    [
        ['Source','-','Preview','Templates'],
        ['Cut','Copy','Paste','PasteText','PasteFromWord'],
        ['Maximize','-','About'],
        ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
        ['Styles','Format'],
        ['Bold','Italic','Underline','Strike','-','Subscript','Superscript', 'TextColor'],
        ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
        ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
        ['Link','Unlink','Anchor'],
        ['Image','Embed','Flash','Attachment','Table','HorizontalRule','Smiley','SpecialChar','PageBreak']
    ];

  config.toolbar_Basic =
    [['Bold','Italic','Underline','Strike','BulletedList', 'NumberedList', 'BlockQuote'],['PasteText', 'ForgeAssets','Link','Unlink','Embed'],['Format','RemoveFormat'],['Source']];
};

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
forge-cli-0.0.18 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.17 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.16 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.15 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.14 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.13 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.12 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.11 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.10 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.9 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.8 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.7 lib/forge/public/javascripts/ckeditor/config.js
forge-cli-0.0.6 lib/forge/public/javascripts/ckeditor/config.js