diff --git a/attractions/slider/utils.js b/attractions/slider/utils.js index 8cf1dc5ea..c51fb6769 100644 --- a/attractions/slider/utils.js +++ b/attractions/slider/utils.js @@ -10,7 +10,7 @@ */ function normalizeEvent(e) { if (e.type.includes('touch')) { - return /** @type {TouchEvent}*/ (e).touches[0]; + return /** @type {TouchEvent}*/ (e).touches[0] || (e).changedTouches[0]; } else { return /** @type {MouseEvent}*/ (e); }