mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Touch: don't trigger radialMenu on pinch zoom
This commit is contained in:
parent
e524393d87
commit
2fa82d9f1f
@ -87,6 +87,8 @@ RED.view = function() {
|
||||
.on("touchcancel", canvasMouseUp)
|
||||
.on("touchstart", function() {
|
||||
if (d3.event.touches.length>1) {
|
||||
clearTimeout(touchStartTime);
|
||||
touchStartTime = null;
|
||||
d3.event.preventDefault();
|
||||
var touch0 = d3.event.touches.item(0);
|
||||
var touch1 = d3.event.touches.item(1);
|
||||
|
Loading…
Reference in New Issue
Block a user