Opened 14 years ago
Closed 14 years ago
#2645 closed bug (fixed)
[ui.dialog] Overlay must be destroyed, when calling $().dialog("destroy")
Reported by: | c_t | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.2.4 |
Component: | ui | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Currently the overlay is only destroyed when calling $('#example').dialog('close') but not when calling $('#example').dialog('destroy).
However the overlay must be destroyed, when destroying a dialog! This can simply be acchieved by adding one line to the destroy-method:
this.destroy = function() { uiDialog.hide();
must become
this.destroy = function() { this.overlay && this.overlay.destroy(); uiDialog.hide();
around line 276 of ui.dialog.js .
Note: See
TracTickets for help on using
tickets.
Fixed in [5185]. Thanks.