I'm using the "jquery way" to instantiate my ckeditor, but it won't take the config settings when I have a custom config, or even a skin, defined. For example, it works fine when doing this:
var config = {
toolbar : [ [ 'Bold', 'Italic', 'Underline', '-', 'RemoveFormat' ], [ 'Link', 'Unlink' ] ],
height : 150,
width : 764
};
this.editor = $('#editor1').ckeditor(config);
But as soon as I add a skin:
var config = {
toolbar : [ [ 'Bold', 'Italic', 'Underline', '-', 'RemoveFormat' ], [ 'Link', 'Unlink' ] ],
height : 150,
width : 764,
skin : 'cList'
};
Or custom config:
var config = {
toolbar : [ [ 'Bold', 'Italic', 'Underline', '-', 'RemoveFormat' ], [ 'Link', 'Unlink' ] ],
height : 150,
width : 764,
customConfig : 'custom/cList_config.js'
};
It doesn't load with my configuration at all. Any ideas? Thanks!