We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db41a72 commit 886e54cCopy full SHA for 886e54c
interact.js
@@ -773,7 +773,9 @@
773
pageX: (touches[0].pageX + touches[1].pageX) / 2,
774
pageY: (touches[0].pageY + touches[1].pageY) / 2,
775
clientX: (touches[0].clientX + touches[1].clientX) / 2,
776
- clientY: (touches[0].clientY + touches[1].clientY) / 2
+ clientY: (touches[0].clientY + touches[1].clientY) / 2,
777
+ screenX: (touches[0].screenX + touches[1].screenX) / 2,
778
+ screenY: (touches[0].screenY + touches[1].screenY) / 2
779
};
780
}
781
0 commit comments