Sfoglia il codice sorgente

imporve overlay show property

tags/4.0.0
Caven Chen 1 anno fa
parent
commit
e14675a566
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 7 aggiunte e 1 eliminazioni
  1. 7
    1
      src/modules/overlay/Overlay.js

+ 7
- 1
src/modules/overlay/Overlay.js Vedi File

@@ -43,7 +43,13 @@ class Overlay {

set show(show) {
this._show = show
this._delegate && (this._delegate.show = this._show)
if(this._delegate && this._delegate.then){
this._delegate.then((obj) => {
obj.show = this._show
})
}else {
this._delegate && (this._delegate.show = this._show)
}
}

get show() {

Loading…
Annulla
Salva