Hi,
I'm trying to remove the "Download" option from the context menu in CKFinder, while integrated with Editor, I was able to do it in a standalone version, is there a way to pass it to the setupCKEditor function?
var finder = new CKFinder();
finder.callback = function( api ) {
// Disable download function
api.disableFileContextMenuOption( 'downloadFile', false );
};
finder.create();