Skip to content
Permalink
Browse files
Dialog: Ensure dialogs have a z-index when calculating the max z-inde…
…x. Fixex #5955 - Dialog: Closing UI dialog when z-index is not defined in any .ui-dialog class, causes NaN to be used as Z-index, throwing an error. Fixes #4652 - Dialog: Event loss in subsequent dialog calls (FF3).
  • Loading branch information
jamiejag authored and scottgonzalez committed Nov 19, 2010
1 parent abfa0e1 commit 8bb412d
Showing 1 changed file with 5 additions and 2 deletions.
@@ -228,7 +228,7 @@ $.widget("ui.dialog", {

close: function(event) {
var self = this,
maxZ;
maxZ, thisZ;

if (false === self._trigger('beforeClose', event)) {
return;
@@ -257,7 +257,10 @@ $.widget("ui.dialog", {
maxZ = 0;
$('.ui-dialog').each(function() {
if (this !== self.uiDialog[0]) {
maxZ = Math.max(maxZ, $(this).css('z-index'));
thisZ = $(this).css('z-index');
if(!isNaN(thisZ)) {
maxZ = Math.max(maxZ, thisZ);
}
}
});
$.ui.dialog.maxZ = maxZ;

0 comments on commit 8bb412d

Please sign in to comment.