update dialogs
This commit is contained in:
parent
44d840d483
commit
dc69bc6055
23 changed files with 300 additions and 210 deletions
|
@ -62,9 +62,11 @@
|
|||
|
||||
var current = this.hoverMenu;
|
||||
|
||||
if (!enabled && current) {
|
||||
current.destroy();
|
||||
this.hoverMenu = null;
|
||||
if (!enabled) {
|
||||
if (current) {
|
||||
current.destroy();
|
||||
this.hoverMenu = null;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -82,9 +84,11 @@
|
|||
|
||||
var current = this.multiSelect;
|
||||
|
||||
if (!enabled && current) {
|
||||
current.destroy();
|
||||
this.multiSelect = null;
|
||||
if (!enabled) {
|
||||
if (current) {
|
||||
current.destroy();
|
||||
this.multiSelect = null;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue