Changes between Version 1 and Version 2 of Ticket #7107, comment 4
- Timestamp:
- Sep 15, 2011, 5:26:19 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7107, comment 4
v1 v2 66 66 dialogClass: 'customClass', 67 67 modal: true, 68 draggable:false, 69 resizable:false, 70 autoOpen: false, 71 minHeight: 547, 72 width: 900, 68 // ... 73 69 maxHeight: 650, 74 70 maxWidth: 900 … … 90 86 dialogClass: 'customClass', 91 87 modal: true, 92 draggable:false, 93 resizable:false, 94 autoOpen: false, 95 minHeight: 547, 88 // ... 96 89 width: 900, 97 90 maxHeight: 650, … … 113 106 if (self.options.modal) { 114 107 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 // ... 123 109 $.ui.dialog.maxZ = maxZ; 124 110 }