-
Notifications
You must be signed in to change notification settings - Fork 1
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
Should a web page allow to select specific types of event to be forwarded and not others #47
Comments
The first thing is I would like to avoid a new API for each new user gesture. By allowing a page to express its interest to forward user gestures as a whole, this makes it forward compatible if UA implements forwarding of a new user gesture. Maybe that is the only thing we need. |
I believe it best to be explicit. This is a trivial addition: controller.forwardWheel();
controller.forwardPinch(); This too is trivial: controller.forwardGestures({wheel: true, pinch: true}); As would: controller.forwardGestures({all: true}); Allowing the application the flexibility of opting in/out of specific gestures might be very significant for those apps that need this, while costing those apps that don't need it nothing (especially with the |
This issue was discussed in WebRTC January 2025 meeting – 21 January 2025 (Forwarding other gestures) |
Capture control may allow to forward user gestures.
And we might extend the list of user gestures that can be forwarded.
In that case, what happens to web pages when we allow new user gestures?
The text was updated successfully, but these errors were encountered: