summaryrefslogtreecommitdiff
path: root/config.js
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2013-07-15 14:18:47 +0100
committerlsces <lester@lsces.co.uk>2013-07-15 14:18:47 +0100
commitde6d09676a9527919813a4474cc28af554a35fe1 (patch)
treea2b3c2ddf01eca1600e130125733d324b59744bb /config.js
parent1d0d1733baef4dbab3f8cd7d7150a55ef2828464 (diff)
downloadckeditor-de6d09676a9527919813a4474cc28af554a35fe1.tar.gz
ckeditor-de6d09676a9527919813a4474cc28af554a35fe1.tar.bz2
ckeditor-de6d09676a9527919813a4474cc28af554a35fe1.zip
Upgrade to CKEditor V4
Directory structure changed so many files removed and replace in a new location This batch is the actuall file changes
Diffstat (limited to 'config.js')
-rw-r--r--config.js26
1 files changed, 16 insertions, 10 deletions
diff --git a/config.js b/config.js
index 44dd1e4..be342b1 100644
--- a/config.js
+++ b/config.js
@@ -1,11 +1,17 @@
-/*
-Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
+/**
+ * @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 ) {
+
+ // %REMOVE_START%
+ // The configuration options below are needed when running CKEditor from source files.
+ config.plugins = 'dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,templates,menu,contextmenu,div,resize,toolbar,elementspath,list,indent,enterkey,entities,popup,filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,font,forms,format,htmlwriter,horizontalrule,iframe,wysiwygarea,image,smiley,justify,link,liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastefromword,preview,print,removeformat,save,selectall,showblocks,showborders,sourcearea,specialchar,stylescombo,tab,table,tabletools,undo,wsc,sourcedialog';
+ config.skin = 'moonocolor';
+ // %REMOVE_END%
-CKEDITOR.editorConfig = function( config )
-{
- // Define changes to default configuration here. For example:
- // config.language = 'fr';
- // config.uiColor = '#AADC6E';
-};
+ // Define changes to default configuration here. For example:
+ // config.language = 'fr';
+ // config.uiColor = '#AADC6E';
+};