CKeditor with a CKFinder custom config file
- by Daan
I know it is possible to load a custom config file for CKFinder
CKFinder.config.customConfig = baseUrl + '/js/ckfinder_config.js';
However, when I load CKFinder within the CKEditor I don't know how to load the custom config for CKFinder. I only got these options:
CKEDITOR.editorConfig = function( config )
{
config.filebrowserBrowseUrl = baseUrl ;
config.filebrowserImageBrowseUrl = baseUrl ;
config.filebrowserFlashBrowseUrl = baseUrl ;
config.filebrowserUploadUrl = baseUrl ;
config.filebrowserImageUploadUrl = baseUrl ;
config.filebrowserFlashUploadUrl = baseUrl ;
}
Is there a way?