Whether the tooltip text has overflown to the next line
()
| 1106 | |
| 1107 | /** Whether the tooltip text has overflown to the next line */ |
| 1108 | private _isTooltipMultiline() { |
| 1109 | const rect = this._elementRef.nativeElement.getBoundingClientRect(); |
| 1110 | return rect.height > MIN_HEIGHT && rect.width >= MAX_WIDTH; |
| 1111 | } |
| 1112 | |
| 1113 | /** Event listener dispatched when an animation on the tooltip finishes. */ |
| 1114 | _handleAnimationEnd({animationName}: AnimationEvent) { |
no test coverage detected