Do not prevent default on pointermove
Instead, only prevent default on handled pointerdown events. This makes the `focus` condition work with interactions that involve dragging on touch devices.
This commit is contained in:
@@ -69,7 +69,6 @@ function touchstart(inEvent) {
|
||||
* @param {TouchEvent} inEvent The in event.
|
||||
*/
|
||||
function touchmove(inEvent) {
|
||||
inEvent.preventDefault();
|
||||
this.processTouches_(inEvent, this.moveOverOut_);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user