Skip to content

Instantly share code, notes, and snippets.

@lsdr
Created April 12, 2017 19:00
Show Gist options
  • Save lsdr/49b06fd00aaadbaababec7d2021399e8 to your computer and use it in GitHub Desktop.
Save lsdr/49b06fd00aaadbaababec7d2021399e8 to your computer and use it in GitHub Desktop.
Gaveteiro CKEditor Config
// CKEditor configuration - Gaveteiro
// referencia: http://docs.ckeditor.com/#!/api/CKEDITOR.config
// https://github.com/galetahub/ckeditor#customize-ckeditor
CKEDITOR.editorConfig = function( config )
{
config.language = 'pt-br';
config.height = 250;
config.allowedContent = true;
config.toolbar = [
{ name: 'paragraph', groups: [ 'list' ], items: [ 'NumberedList', 'BulletedList' ] },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', '-', 'RemoveFormat' ] },
{ name: 'links', items: [ 'Link', 'Unlink' ] }
];
config.toolbar_mini = [
{ name: 'paragraph', groups: [ 'list' ], items: [ 'NumberedList', 'BulletedList' ] },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', '-', 'RemoveFormat' ] },
{ name: 'links', items: [ 'Link', 'Unlink' ] }
];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment