Created
June 12, 2012 11:02
-
-
Save peterkeating/2916923 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2003-2012, 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 example: | |
| // config.language = 'fr'; | |
| // config.uiColor = '#AADC6E'; | |
| config.toolbar = 'Custom'; | |
| config.toolbar_Custom = [ | |
| { name: 'styles', items: ['Styles', 'Format'] }, | |
| { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', '-', 'RemoveFormat'] }, | |
| { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Blockquote'] }, | |
| { name: 'links', items: ['Link', 'Unlink', 'Anchor'] }, | |
| { name: 'insert', items: ['Image'] }, | |
| { name: 'tools', items: ['Maximize', '-', 'About'] } | |
| ]; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment