Skip to content

Commit

Permalink
fix(material/tooltip): remove old IE workaround (#29674)
Browse files Browse the repository at this point in the history
Removes a workaround for an IE bug that is no longer necessary.
  • Loading branch information
crisbeto committed Sep 3, 2024
1 parent f4a02ad commit 9333de0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/material/tooltip/tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
Expand Down

0 comments on commit 9333de0

Please sign in to comment.