* Marks that the tooltip needs to be checked in the next change detection run. * Mainly used for rendering the initial text before positioning a tooltip, which * can be problematic in components with OnPush change detection.
()
| 1081 | * can be problematic in components with OnPush change detection. |
| 1082 | */ |
| 1083 | _markForCheck(): void { |
| 1084 | this._changeDetectorRef.markForCheck(); |
| 1085 | } |
| 1086 | |
| 1087 | _handleMouseLeave({relatedTarget}: MouseEvent) { |
| 1088 | if (!relatedTarget || !this._triggerElement.contains(relatedTarget as Node)) { |
no test coverage detected