This commit is contained in:
yumoqing 2024-08-20 17:52:23 +08:00
parent 465406dbdd
commit 797686e3d3

View File

@ -81,17 +81,19 @@ bricks.BaseModal = class extends bricks.Layout {
this.dispatch('opened');
}
dismiss(){
this.set_css('display', 'none');
if (this.timeout_task){
this.timeout_task.cancel();
this.timeout_task = null;
if (this.parent){
this.set_css('display', 'none');
if (this.timeout_task){
this.timeout_task.cancel();
this.timeout_task = null;
}
try {
this.parent.remove_widget(this);
} catch(e){
console.log(e, 'remove modal error');
}
this.dispatch('dismissed');
}
try {
this.parent.remove_widget(this);
} catch(e){
console.log(e, 'remove modal error');
}
this.dispatch('dismissed');
}
}
bricks.Modal = class extends bricks.BaseModal {