2012-01-02 06:54:03 -06:00
|
|
|
|
/*
|
|
|
|
|
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
|
|
|
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
|
|
|
*/
|
2013-03-25 10:38:52 -05:00
|
|
|
|
CKEDITOR.editorConfig = function(config) {
|
2012-01-02 06:54:03 -06:00
|
|
|
|
config.toolbar = 'Appy';
|
2013-03-25 10:38:52 -05:00
|
|
|
|
config.toolbar_Appy = [
|
2013-03-28 15:32:47 -05:00
|
|
|
|
{ name: 'basicstyles',
|
2013-04-11 09:01:52 -05:00
|
|
|
|
items: ["Format", "Bold", "Italic", "Underline"]},
|
2013-03-28 15:32:47 -05:00
|
|
|
|
{ name: 'paragraph',
|
2013-04-03 06:10:23 -05:00
|
|
|
|
items: ["NumberedList","BulletedList","Outdent","Indent"]},
|
2013-03-28 15:32:47 -05:00
|
|
|
|
{ name: 'clipboard',
|
|
|
|
|
items: ["Cut","Copy","Paste","PasteText","Undo","Redo"]},
|
|
|
|
|
{ name: 'editing', items: ["Scayt"]},
|
|
|
|
|
{ name: 'insert',
|
|
|
|
|
items: ["Image","Table","SpecialChar","Link","Unlink","Source","Maximize"]}
|
2012-01-02 06:54:03 -06:00
|
|
|
|
];
|
2012-05-14 10:35:34 -05:00
|
|
|
|
config.entities = false;
|
|
|
|
|
config.entities_greek = false;
|
|
|
|
|
config.entities_latin = false;
|
|
|
|
|
config.fillEmptyBlocks = false;
|
2013-03-28 15:32:47 -05:00
|
|
|
|
config.removePlugins = 'elementspath';
|
|
|
|
|
config.scayt_sLang = 'fr_BE';
|
|
|
|
|
config.scayt_uiTabs = '0,1,0';
|
2012-01-02 06:54:03 -06:00
|
|
|
|
};
|