Opened 14 years ago
Closed 14 years ago
#4235 closed bug (fixed)
dialog('close') fails in IE in rev >= 2119
Reported by: | aflynt | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.7 |
Component: | ui.dialog | Version: | |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Revision 2119 of ui.dialog.js caused a regression bug where calls to the close method in IE when options.hide is not set don't actually remove the dialog from the screen.
The problem is that self.uiDialog.hide() is no longer called when options.hide isn't set and self._trigger('close', event); doesn't seem to close the dialog in IE.
I've attached a patch that fixes this.
Attachments (1)
Change History (4)
Changed 14 years ago by
Attachment: | ui.dialog.js.patch added |
---|
comment:1 Changed 14 years ago by
Milestone: | TBD → 1.7 |
---|
comment:2 Changed 14 years ago by
Milestone: | 1.7 → 1.8 |
---|
comment:3 Changed 14 years ago by
Milestone: | 1.8 → 1.7 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Fixed in r2134.
Note: See
TracTickets for help on using
tickets.
Patch for IE dialog close regression.