()
| 125 | } |
| 126 | |
| 127 | hide() { |
| 128 | this._content = undefined; |
| 129 | if (this._isHidden) return; |
| 130 | this._isHidden = true; |
| 131 | this.bodyNode.style.display = 'none'; |
| 132 | this.targetNode = undefined; |
| 133 | } |
| 134 | |
| 135 | show() { |
| 136 | if (!this._isHidden) return; |
no outgoing calls
no test coverage detected