diff --git a/src/components/mousewheel/mousewheel.js b/src/components/mousewheel/mousewheel.js index b4d290c30..ed28c36bf 100644 --- a/src/components/mousewheel/mousewheel.js +++ b/src/components/mousewheel/mousewheel.js @@ -147,6 +147,9 @@ const Mousewheel = { swiper.mousewheel.lastScrollTime = (new window.Date()).getTime(); } else { // Freemode or scrollContainer: + if (swiper.params.loop) { + swiper.loopFix(); + } let position = swiper.getTranslate() + (delta * params.sensitivity); const wasBeginning = swiper.isBeginning; const wasEnd = swiper.isEnd;