Changes between Version 1 and Version 2 of Ticket #7107, comment 4


Ignore:
Timestamp:
Sep 15, 2011, 5:26:19 PM (12 years ago)
Author:
bigorangemachine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7107, comment 4

    v1 v2  
    6666                        dialogClass: 'customClass',
    6767                        modal: true,
    68                         draggable:false,
    69                         resizable:false,
    70                         autoOpen: false,
    71                         minHeight: 547,
    72                         width: 900,
     68                        // ...
    7369                        maxHeight: 650,
    7470                        maxWidth: 900
     
    9086                        dialogClass: 'customClass',
    9187                        modal: true,
    92                         draggable:false,
    93                         resizable:false,
    94                         autoOpen: false,
    95                         minHeight: 547,
     88                        // ...
    9689                        width: 900,
    9790                        maxHeight: 650,
     
    113106                if (self.options.modal) {
    114107                        maxZ = 0;
    115                         $('.ui-dialog').each(function() {
    116                                 if (this !== self.uiDialog[0]) {
    117                                         thisZ = $(this).css('z-index');
    118                                         if(!isNaN(thisZ)) {
    119                                                 maxZ = Math.max(maxZ, thisZ);
    120                                         }
    121                                 }
    122                         });
     108                        // ...
    123109                        $.ui.dialog.maxZ = maxZ;
    124110                }