Detaches the currently-attached tooltip.
()
| 585 | |
| 586 | /** Detaches the currently-attached tooltip. */ |
| 587 | private _detach() { |
| 588 | if (this._overlayRef && this._overlayRef.hasAttached()) { |
| 589 | this._overlayRef.detach(); |
| 590 | } |
| 591 | |
| 592 | this._tooltipInstance = null; |
| 593 | } |
| 594 | |
| 595 | /** Updates the position of the current tooltip. */ |
| 596 | private _updatePosition(overlayRef: OverlayRef) { |
no test coverage detected