Event listener dispatched when an animation on the tooltip finishes.
({animationName}: AnimationEvent)
| 1112 | |
| 1113 | /** Event listener dispatched when an animation on the tooltip finishes. */ |
| 1114 | _handleAnimationEnd({animationName}: AnimationEvent) { |
| 1115 | if (animationName === this._showAnimation || animationName === this._hideAnimation) { |
| 1116 | this._finalizeAnimation(animationName === this._showAnimation); |
| 1117 | } |
| 1118 | } |
| 1119 | |
| 1120 | /** Cancels any pending animation sequences. */ |
| 1121 | _cancelPendingAnimations() { |
nothing calls this directly
no test coverage detected