Handles the cleanup after an animation has finished.
(toVisible: boolean)
| 1132 | |
| 1133 | /** Handles the cleanup after an animation has finished. */ |
| 1134 | private _finalizeAnimation(toVisible: boolean) { |
| 1135 | if (toVisible) { |
| 1136 | this._closeOnInteraction = true; |
| 1137 | } else if (!this.isVisible()) { |
| 1138 | this._onHide.next(); |
| 1139 | } |
| 1140 | } |
| 1141 | |
| 1142 | /** Toggles the visibility of the tooltip element. */ |
| 1143 | private _toggleVisibility(isVisible: boolean) { |
no test coverage detected