Skip to content
Snippets Groups Projects
Commit c8fd7588 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #669796 by casey: remove unnecessary code.

parent 286d9c6a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -54,14 +54,6 @@ Drupal.behaviors.overlayChild = {
// Ok, now we can tell the parent window we're ready.
parent.Drupal.overlay.bindChild(window);
// Install onBeforeUnload callback, if module is present.
if ($.isObject(Drupal.onBeforeUnload) && !Drupal.onBeforeUnload.callbackExists('overlayChild')) {
Drupal.onBeforeUnload.addCallback('overlayChild', function () {
// Tell the parent window we're unloading.
parent.Drupal.overlay.unbindChild(window);
});
}
// Attach child related behaviors to the iframe document.
self.attachBehaviors(context, settings);
}
......
......@@ -530,26 +530,6 @@ Drupal.overlay.bindChild = function (iframeWindow, isClosing) {
}
};
/**
* Unbind the child window.
*
* Remove keyboard event handlers, reset title and hide the iframe.
*/
Drupal.overlay.unbindChild = function (iframeWindow) {
var self = this;
var $iframeDocument = iframeWindow.jQuery(iframeWindow.document);
// Prevent memory leaks by explicitly unbinding keyboard event handler
// on the child document.
$iframeDocument.unbind('keydown.overlay-event');
// Change the overlay title.
self.$container.dialog('option', 'title', Drupal.t('Please wait...'));
// Hide the iframe element.
self.$iframe.fadeOut('fast');
};
/**
* Check if the given link is in the administrative section of the site.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment