From 4a79052ae077c632afd1f8fd001a96bb3406b0c0 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Tue, 3 Sep 2024 17:07:01 +0200 Subject: [PATCH] fix(material/tooltip): remove old IE workaround (#29674) Removes a workaround for an IE bug that is no longer necessary. (cherry picked from commit 9333de0537e7b905407999820bf283f4943c986b) --- src/material/tooltip/tooltip.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/material/tooltip/tooltip.ts b/src/material/tooltip/tooltip.ts index 1af416d83817..47ec824f100d 100644 --- a/src/material/tooltip/tooltip.ts +++ b/src/material/tooltip/tooltip.ts @@ -948,9 +948,6 @@ export class MatTooltip implements OnDestroy, AfterViewInit { encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: { - // Forces the element to have a layout in IE and Edge. This fixes issues where the element - // won't be rendered if the animations are disabled or there is no web animations polyfill. - '[style.zoom]': 'isVisible() ? 1 : null', '(mouseleave)': '_handleMouseLeave($event)', 'aria-hidden': 'true', },