diff options
Diffstat (limited to 'sources/config.js')
-rw-r--r-- | sources/config.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sources/config.js b/sources/config.js new file mode 100644 index 0000000..c3716d1 --- /dev/null +++ b/sources/config.js | |||
@@ -0,0 +1,17 @@ | |||
1 | /** | ||
2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. | ||
3 | * For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | |||
6 | CKEDITOR.editorConfig = function( config ) { | ||
7 | |||
8 | // %REMOVE_START% | ||
9 | // The configuration options below are needed when running CKEditor from source files. | ||
10 | config.plugins = 'dialogui,dialog,a11yhelp,dialogadvtab,basicstyles,panel,floatpanel,menu,contextmenu,resize,button,toolbar,elementspath,enterkey,entities,popup,filebrowser,floatingspace,listblock,richcombo,format,horizontalrule,htmlwriter,fakeobjects,iframe,wysiwygarea,image,indent,indentblock,indentlist,justify,link,list,liststyle,magicline,maximize,removeformat,showborders,sourcearea,tab,lineutils,clipboard,widgetselection,widget,oembed'; | ||
11 | config.skin = 'moono'; | ||
12 | // %REMOVE_END% | ||
13 | |||
14 | // Define changes to default configuration here. For example: | ||
15 | // config.language = 'fr'; | ||
16 | // config.uiColor = '#AADC6E'; | ||
17 | }; | ||