Not sure but I think what you are looking for is the removePlugins command. That drops what you do not need or desire. In the code block in an example of how I am using it for one of my applications,
Thanks, but the problem is: CKEditor still loads all those plugins since they are included in the ckeditor.js file. Also, custom plugins will be load in a separate request, since they of course aren't included. A custom CKEditor.js file could shorten the traffic a lot (at least in my case where I hardly need any plugins).
Re: Loading only necessary plugins/languages/etc
function insertCK () { editor = CKEDITOR.appendTo( 'wysiwyg', { skin : 'v2', width : 1000, height : 400, removePlugins: 'elementspath,flash', extraPlugins : 'embed,ASPSpellCheck,YouTube', resize_enabled: false, enterMode: 2, // 1 = <P>, 2= <BR>, 3 = <DIV> shiftEnterMode: 1, // 1 = <P>, 2= <BR>, 3 = <DIV> toolbar: [ ['Source','ASPSpellCheck'], ['Cut','Copy','Paste','PasteText','PasteFromWord','Print'], ['Undo','Redo','Find','Replace','SelectAll','RemoveFormat'], ['BidiLtr', 'BidiRtl'], ['Bold','Italic','Underline','Strike','Subscript','Superscript'], ['NumberedList','BulletedList','Outdent','Indent','Blockquote','CreateDiv'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], ['Image','embed',,'YouTube','Table','HorizontalRule','Smiley','SpecialChar'], ['TextColor','BGColor'], ['Maximize', 'ShowBlocks','About'], '/', ['Format','Font','FontSize'] ] }); CKFinder.setupCKEditor( null, 'CKFinder/' ); }Re: Loading only necessary plugins/languages/etc
Re: Loading only necessary plugins/languages/etc
Re: Loading only necessary plugins/languages/etc
Re: Loading only necessary plugins/languages/etc