diff --git a/src/platform/input/touch-event.js b/src/platform/input/touch-event.js index cc4a2ef0162..92d22c924bd 100644 --- a/src/platform/input/touch-event.js +++ b/src/platform/input/touch-event.js @@ -132,7 +132,7 @@ class TouchEvent { this.event = event; this.touches = Array.from(event.touches).map(touch => new Touch(touch)); - this.changedTouches = Array.from(event.changedTouches).map(touch => new Touch(touch)); + this.changedTouches = Array.from(event.changedTouches).map(touch => new Touch(touch)); } /**