admin
Guest
|
 |
« on: August 18, 2010, 10:28: PM » |
|
The issue turned out to be quite simple to resolve when I used the config.js for the first time and add the tools I neglected to remove the } here
CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'us'; // config.uiColor = '#AADC6E';
}
this } caused the tools not to load that had been placed below it and the default one to load instead once I removed it and placed it at the end of the file } everything worked fine
config.toolbar_Full = [ ['Source','Save','NewPage','Preview'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], '/', ['Image','Link','Unlink','Anchor','-','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','SelectAll','RemoveFormat','Undo','Redo','-','Find','Replace'],
['Bold','Italic','Underline','Strike','-','Subscript','Superscript','NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], '/', ['Styles','Format','Font','FontSize'], ['TextColor','BGColor'], ['ShowBlocks'] ]; };
|