We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 540a4cd commit 8c21385Copy full SHA for 8c21385
src/material/tooltip/tooltip.ts
@@ -613,6 +613,10 @@ export class MatTooltip implements OnDestroy, AfterViewInit {
613
});
614
}
615
616
+ private _platformSupportsMouseEvents() {
617
+ return !this._platform.IOS && !this._platform.ANDROID;
618
+ }
619
+
620
/** Disables the native browser gestures, based on how the tooltip has been configured. */
621
private _disableNativeGesturesIfNecessary() {
622
const gestures = this.touchGestures;
@@ -750,10 +754,6 @@ export class TooltipComponent implements OnDestroy {
750
754
this._onHide.complete();
751
755
752
756
753
- private _platformSupportsMouseEvents() {
- return !this._platform.IOS && !this._platform.ANDROID;
- }
-
757
_animationStart() {
758
this._closeOnInteraction = false;
759
0 commit comments