By default, when you're editing a piece of content using ckeditor as the wysiwyg, double clicking an image embedded in content brings up the Image Properties dialog box.
Is it possible to change this action? I'd like to display a different dialog window when an image is doubleclicked.
I'd also like to add or change the "Image properties" item in the context menu that is provided by the image plugin.
I've successfully removed the the "Image properties" context menu item by adding this to my ckeditor config:
CKEDITOR.on('instanceReady', function(ck) { ck.editor.removeMenuItem('image'); })
If anyone can point me in the right direction I would really appreciate it.
Thank you!