mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
Merge pull request #1372 from cloudflightio/cg/touch_click_propagation
make sure `preventDefault()` is not called on touchend-events per default
This commit is contained in:
commit
e8a9a8b7c3
@ -737,7 +737,7 @@ export class Stage extends Container<Layer> {
|
||||
|
||||
// always call preventDefault for desktop events because some browsers
|
||||
// try to drag and drop the canvas element
|
||||
if (evt.cancelable) {
|
||||
if (evt.cancelable && eventType !== "touch") {
|
||||
evt.preventDefault();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user