瀏覽代碼

imporve overlay show property

tags/4.0.0
Caven Chen 1 年之前
父節點
當前提交
e14675a566
No account linked to committer's email address
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7
    1
      src/modules/overlay/Overlay.js

+ 7
- 1
src/modules/overlay/Overlay.js 查看文件

@@ -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…
取消
儲存