Skip to content

Commit 9333de0

Browse files
authored
fix(material/tooltip): remove old IE workaround (#29674)
Removes a workaround for an IE bug that is no longer necessary.
1 parent f4a02ad commit 9333de0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/material/tooltip/tooltip.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -948,9 +948,6 @@ export class MatTooltip implements OnDestroy, AfterViewInit {
948948
encapsulation: ViewEncapsulation.None,
949949
changeDetection: ChangeDetectionStrategy.OnPush,
950950
host: {
951-
// Forces the element to have a layout in IE and Edge. This fixes issues where the element
952-
// won't be rendered if the animations are disabled or there is no web animations polyfill.
953-
'[style.zoom]': 'isVisible() ? 1 : null',
954951
'(mouseleave)': '_handleMouseLeave($event)',
955952
'aria-hidden': 'true',
956953
},

0 commit comments

Comments
 (0)