summaryrefslogtreecommitdiff
path: root/config.js
diff options
context:
space:
mode:
authorChristian Fowler <cfowler@einstein>2015-01-30 19:20:19 -0500
committerChristian Fowler <cfowler@einstein>2015-01-30 19:20:19 -0500
commite4db2d9180554ab7d65de6720e93d7f8a821a147 (patch)
tree5698e22c1beac28a9bec9ca1c3497bd99e76977a /config.js
parent37ba5177439f8c6ceea4d0abfe3ab8573e7f0b58 (diff)
downloadckeditor-e4db2d9180554ab7d65de6720e93d7f8a821a147.tar.gz
ckeditor-e4db2d9180554ab7d65de6720e93d7f8a821a147.tar.bz2
ckeditor-e4db2d9180554ab7d65de6720e93d7f8a821a147.zip
move distro to ckeditor subdirectory
Diffstat (limited to 'config.js')
-rwxr-xr-xconfig.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/config.js b/config.js
deleted file mode 100755
index 2f2526a..0000000
--- a/config.js
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * @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 complete reference see:
- // http://docs.ckeditor.com/#!/api/CKEDITOR.config
-
- // The toolbar groups arrangement, optimized for two toolbar rows.
- config.toolbarGroups = [
- { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
- { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
- { name: 'links' },
- { name: 'insert' },
- { name: 'forms' },
- { name: 'tools' },
- { name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
- { name: 'others' },
- '/',
- { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
- { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
- { name: 'styles' },
- { name: 'colors' },
- { name: 'about' }
- ];
-
- // Remove some buttons provided by the standard plugins, which are
- // not needed in the Standard(s) toolbar.
- config.removeButtons = 'Underline,Subscript,Superscript';
-
- // Set the most common block elements.
- config.format_tags = 'p;h1;h2;h3;pre';
-
- // Simplify the dialog windows.
- config.removeDialogTabs = 'image:advanced;link:advanced';
-};