-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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(gestures): remove drag event from config #1744
Conversation
@jelbourn I'm not too familiar with the gesture setup, are we supposed to remove the |
@crisbeto I think it depends on what we are trying to archive. Recently in b09465c, the
In my opinion, we should remove the drag recognizer and associated events here, and just use the |
1421f47
to
c269c18
Compare
Thanks @devversion,, removed. |
@@ -7,7 +7,6 @@ export class MdGestureConfig extends HammerGestureConfig { | |||
|
|||
/* List of new event names to add to the gesture support list */ | |||
events: string[] = [ | |||
'drag', | |||
'dragright', | |||
'dragleft', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like you forgot to remove the dragright
and dragleft
here
Removes the `drag` event from the gesture config. Fixes angular#1025.
c269c18
to
04fb5b7
Compare
LGTM |
Removes the `drag` event from the gesture config. Fixes angular#1025.
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. |
Removes the
drag
event from the gesture config.Fixes #1025.