Skip to content

Instantly share code, notes, and snippets.

@peterkeating
Created June 12, 2012 11:02
Show Gist options
  • Select an option

  • Save peterkeating/2916923 to your computer and use it in GitHub Desktop.

Select an option

Save peterkeating/2916923 to your computer and use it in GitHub Desktop.
/*
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