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/slider): dragEnd not being emitted #26289

Merged
merged 1 commit into from Jan 2, 2023

Commits on Dec 18, 2022

  1. fix(material/slider): dragEnd not being emitted

    The `dragStart` and `dragEnd` events were being emitted in the `_fixValue` method, however the call to `_fixValue` was removed from the ending sequence in angular#26215. This meant that the `dragEnd` event was no longer being emitted.
    
    These changes move the `dragStart` and `dragEnd` events into the pointer down/up handlers instead since emitting them has nothing to do with fixing the value.
    
    Fixes angular#26285.
    crisbeto committed Dec 18, 2022
    Configuration menu
    Copy the full SHA
    b63684e View commit details
    Browse the repository at this point in the history