|
1 | | -/** |
2 | | - * @license Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. |
3 | | - * For licensing, see LICENSE.html or http://ckeditor.com/license |
4 | | - */ |
5 | | - |
6 | | -CKEDITOR.editorConfig = function (config) { |
7 | | - // Define changes to default configuration here. For example: |
8 | | - // config.language = 'fr'; |
9 | | - // config.uiColor = '#AADC6E'; |
10 | | - config.filebrowserImageUploadUrl = null; |
11 | | - config.enterMode = CKEDITOR.ENTER_BR; |
12 | | - config.toolbar = [ |
13 | | - { name: 'document', items : ['Source','Preview','-','Templates','-', 'SpellChecker' ] }, |
14 | | - { name: 'clipboard', items : [ 'Cut','Copy','Paste','-','Undo','Redo' ] }, |
15 | | - { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] }, |
16 | | - '/', |
17 | | - { name: 'styles', items : [ 'Styles','Format','Font','FontSize', '-', 'TextColor','BGColor'] }, |
18 | | - { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote', |
19 | | - '-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock' ] }, |
20 | | - { name: 'links', items : [ 'Link','Unlink' ] } |
21 | | - ]; |
22 | | -}; |
| 1 | +/** |
| 2 | + * * @license Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. |
| 3 | + * * For licensing, see LICENSE.html or http://ckeditor.com/license |
| 4 | + * |
| 5 | + */ |
| 6 | + |
| 7 | +CKEDITOR.editorConfig = function (config) { |
| 8 | + // Define changes to default configuration here. For example: |
| 9 | + // config.language = 'fr'; |
| 10 | + // config.uiColor = '#AADC6E'; |
| 11 | + config.filebrowserImageUploadUrl = null; |
| 12 | + config.enterMode = CKEDITOR.ENTER_BR; |
| 13 | + config.toolbar = [ |
| 14 | + { name: 'document', items : ['Source','-','Templates','-', 'SpellChecker' ] }, |
| 15 | + { name: 'clipboard', items : [ 'Cut','Copy','Paste','-','Undo','Redo' ] }, |
| 16 | + { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] }, |
| 17 | + '/', |
| 18 | + { name: 'styles', items : [ 'Format','Font','FontSize', '-', 'TextColor','BGColor'] }, |
| 19 | + { name: 'paragraph', items : [ 'Outdent','Indent','-','Blockquote', |
| 20 | + '-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock' ] }, |
| 21 | + { name: 'links', items : [ 'Link','Unlink' ] } |
| 22 | + ]; |
| 23 | +}; |
0 commit comments