* Interactions on the HTML body should close the tooltip immediately as defined in the * material design spec. * https://material.io/design/components/tooltips.html#behavior
()
| 1070 | * https://material.io/design/components/tooltips.html#behavior |
| 1071 | */ |
| 1072 | _handleBodyInteraction(): void { |
| 1073 | if (this._closeOnInteraction) { |
| 1074 | this.hide(0); |
| 1075 | } |
| 1076 | } |
| 1077 | |
| 1078 | /** |
| 1079 | * Marks that the tooltip needs to be checked in the next change detection run. |