Dialog: Changed overlay to use zIndex() to test which events to cancel (fixed #4363 Datepicker Month/Year Dropdowns Not Working In Safari In A Dialog)

This commit is contained in:
Brant Burnett 2010-01-29 21:18:57 +00:00
parent 76f7e835b3
commit 58a3a99e1e

View File

@ -600,8 +600,8 @@ $.extend($.ui.dialog.overlay, {
// handle $(el).dialog().dialog('close') (see #4065)
if ($.ui.dialog.overlay.instances.length) {
$(document).bind($.ui.dialog.overlay.events, function(event) {
var dialogZ = $(event.target).parents('.ui-dialog').css('zIndex') || 0;
return (dialogZ > $.ui.dialog.overlay.maxZ);
// stop events if the z-index of the target is <= the z-index of the overlay
return ($(event.target).zIndex() > $.ui.dialog.overlay.maxZ);
});
}
}, 1);