After reading the docs on doing custom toolbars and configs, I am having issues. Here is my onpage code:
And here is the contents of jss/ckeditor.config.js:
For some reason the toolbar is still set to the Full toolbar, any idea what i'm doing wrong?
<script type="text/javascript" src="jss/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="jss/ckeditor/adapters/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#txtArticleText').ckeditor( function() { /* callback code */ }, { customConfig : 'jss/ckeditor.config.js' } );
});
</script>
And here is the contents of jss/ckeditor.config.js:
CKEDITOR.editorConfig = function( config )
{
config.toolbar = 'MyMediaLiveToolbar';
config.toolbar_MyMediaLiveToolbar =
[
['Cut','Copy','Paste','PasteText','PasteFromWord','-', 'SpellChecker', 'Scayt'],
['Undo','Redo','-','SelectAll','RemoveFormat'],
'/',
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Image','Table','HorizontalRule','SpecialChar','PageBreak'],
'/',
['Styles','Format','Font','FontSize'],
['TextColor','BGColor'],
['Maximize', 'ShowBlocks','-','Source']
];
};
For some reason the toolbar is still set to the Full toolbar, any idea what i'm doing wrong?

Re: JQuery Toolbar Issue