26 lines
673 B
JavaScript
Executable File
26 lines
673 B
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
*/
|
|
|
|
CKEDITOR.editorConfig = function( config )
|
|
{
|
|
|
|
config.toolbar_Basic =
|
|
[
|
|
['Bold', 'Italic', '-', 'FontSize', 'Font', 'TextColor', 'JustifyLeft','JustifyCenter','JustifyRight']
|
|
|
|
];
|
|
config.toolbar_Min =
|
|
[
|
|
];
|
|
|
|
config.contentsCss = '/static/css/fonts.css';
|
|
config.font_names = "Edgware Road;Berlin Safari;SG Grotesque;Tallys;GraublauWeb;Fontin;Tagesschrift;";
|
|
|
|
|
|
// Define changes to default configuration here. For example:
|
|
// config.language = 'fr';
|
|
// config.uiColor = '#AADC6E';
|
|
};
|