I'm trying to find a way to programmatically set the position of a CKEditor dialog whenever a new one is opened up. The actual setting of the position part seems easy, but what I can't seem to figure out is how to trap the event of a new CKEditor dialog being created and shown.
I'm assuming it will be something along the lines of...
CKEDITOR.on('dialogCreated', function(e) { ... } );
But can't seem to actually find it in the documentation. Any hints/tips?