-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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(button-toggle): toggle group should not emit an initial change event. #1144
fix(button-toggle): toggle group should not emit an initial change event. #1144
Conversation
…ange event. References angular#1125
Just wondering, can we put |
@colinfang Yeah that works too. I do not recall why we started using the |
@devversion @colinfang Using |
@jelbourn Sounds reasonable. Reverted my commit about the |
LGTM |
@jelbourn Sorry I don't quite follow up, I have never made a Are you saying in
At |
@colinfang when you have an |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This is the addition of 23a61ab, which was only taking care of the
ButtonToggle
itself, and not of the group.Since the
md-button-toggle-group
does not contain any underlaying input element, and we can't use theemit event if native input does
approach, we need to wait for the component view to be ready.References #1125