Yeah, that's kinda by design because multi-touch typically enables other stuff like pinching/zooming. But to get the behavior you're after, why don't you set allowNativeTouchScrolling:false on your Draggable and then add this:   function ignoreEvent(e) {   e.preventDefault();   e.stopImmediatePropagation();   if (e.preventManipulation) {     e.preventManipulation();   }   return false; } document.addEventListener("touchstart", ignoreEvent, false); document.addEventListener("pointerdown"
    • Like
    3