Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(material/tooltip): decouple removal logic from change detection #19432

Merged
merged 2 commits into from
Mar 6, 2022

Commits on Mar 5, 2022

  1. fix(material/tooltip): decouple removal logic from change detection

    Currently the logic in the tooltip that removes it from the DOM is run either if the trigger
    is destroyed or the exit animation has finished. The problem is that if the trigger is
    detached from change detection, but hasn't been destroyed, the exit animation will
    never run and the element won't be cleaned up. These changes switch to using CSS
    animations and manipulating the DOM node directly to trigger the animation.
    
    Fixes angular#19365.
    crisbeto committed Mar 5, 2022
    Configuration menu
    Copy the full SHA
    af09cc4 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2022

  1. Configuration menu
    Copy the full SHA
    fb516c0 View commit details
    Browse the repository at this point in the history