I'm having the same issue. Ideally I would like to remove the link tab from the image-dialog or at least set a different script to it as the "browse server" action on the "image info" tab. Currently the same script is called on the image info tab or the link tab even though I have the following in my config file:
Re: remove Link-tab fra image-dialog
Currently the same script is called on the image info tab or the link tab even though I have the following in my config file:
I thought that the following would remove the link tab but this doesn't work eighter...
Re: remove Link-tab fra image-dialog
Re: remove Link-tab fra image-dialog
http://dev.fckeditor.net/ticket/5127
CKEDITOR.on('dialogDefinition', function( ev ) { var dialogName = ev.data.name; var dialogDefinition = ev.data.definition; switch (dialogName) { case 'image': //Image Properties dialog dialogDefinition.removeContents('Link'); dialogDefinition.removeContents('advanced'); break; case 'link': //image Properties dialog dialogDefinition.removeContents('advanced'); break; } });Re: remove Link-tab fra image-dialog
alfonsoml
Re: remove Link-tab fra image-dialog