Issue #2499035 by droplet: When in CKEditor maximized mode, Insert Image dialog is not working

8.0.x
Alex Pott 2015-06-11 11:59:19 +01:00
parent 3b62b84f4e
commit 0e6d5064e7
1 changed files with 5 additions and 0 deletions

View File

@ -230,6 +230,11 @@
}
};
// Moves the dialog to the top of the CKEDITOR stack.
$(window).on('dialogcreate', function (e, dialog, $element, settings) {
$('.editor-dialog').css("zIndex", CKEDITOR.config.baseFloatZIndex + 1);
});
// Respond to new dialogs that are opened by CKEditor, closing the AJAX loader.
$(window).on('dialog:beforecreate', function (e, dialog, $element, settings) {
$('.ckeditor-dialog-loading').animate({top: '-40px'}, function () {