We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad64c6a + 0f242f7 commit 6b77d2aCopy full SHA for 6b77d2a
1 file changed
src/implosion.js
@@ -226,7 +226,7 @@ export default class Implosion {
226
*/
227
function normalizeEvent(ev) {
228
if (ev.type === 'touchmove' || ev.type === 'touchstart' || ev.type === 'touchend') {
229
- let touch = ev.targetTouches[0] || ev.changedTouches[0];
+ let touch = ev.changedTouches[0];
230
return {
231
x: touch.clientX,
232
y: touch.clientY,
0 commit comments