Catch double destroy on escape.
This commit is contained in:
parent
afd723fdcd
commit
5f1cbc6a1a
|
@ -129,7 +129,9 @@ var OCdialogs = {
|
|||
modal: modal,
|
||||
buttons: buttonlist,
|
||||
close: function(event, ui) {
|
||||
self.$filePicker.ocdialog('destroy').remove();
|
||||
try {
|
||||
$(this).ocdialog('destroy').remove();
|
||||
} catch(e) {}
|
||||
self.$filePicker = null;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue