CKEditor 4.4.5
I need custom toolbar , and i try it to do in config.js:
config.toolbar_MyBasic = [ ['Source','PasteText'] ];
I use JQuery adapter for attach to textarea:
var cktoolbar = {toolbar : 'MyBasic'}; $('textarea.ckedit').ckeditor($.noop,cktoolbar);
But after page loaded ckeditor have full toolbar.
Why my customs don't work? I think config.js don't loaded by ckeditor, because i write this code in config.js and after page loaded i dont see any alerts or logs in consloe:
alert('hello world'); console.log('test');
Please, help me. I dont understand why config.js not executed.
Thanks and sorry for my english.