()
| 515 | } |
| 516 | |
| 517 | hide() { |
| 518 | const style = this.el.style; |
| 519 | if (this._enableDisplayTransition) { |
| 520 | style.visibility = 'hidden'; |
| 521 | style.opacity = '0'; |
| 522 | } |
| 523 | else { |
| 524 | style.display = 'none'; |
| 525 | } |
| 526 | env.transform3dSupported && (style.willChange = ''); |
| 527 | this._show = false; |
| 528 | this._longHideTimeout = setTimeout(() => this._longHide = true, 500) as any; |
| 529 | } |
| 530 | |
| 531 | hideLater(time?: number) { |
| 532 | if (this._show && !(this._inContent && this._enterable) && !this._alwaysShowContent) { |
no outgoing calls
no test coverage detected