Returns true if the tooltip is currently visible to the user
()
| 491 | |
| 492 | /** Returns true if the tooltip is currently visible to the user */ |
| 493 | _isTooltipVisible(): boolean { |
| 494 | return !!this._tooltipInstance && this._tooltipInstance.isVisible(); |
| 495 | } |
| 496 | |
| 497 | /** Create the overlay config and position strategy */ |
| 498 | private _createOverlay(origin?: {x: number; y: number}): OverlayRef { |
no test coverage detected