Skip to content

Commit

Permalink
fix(core): fix issue with calling freeMode introduced in 9.4.0
Browse files Browse the repository at this point in the history
fixes #6751
  • Loading branch information
nolimits4web committed Jun 13, 2023
1 parent 7126109 commit 581eea8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/events/onTouchMove.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,8 @@ export default function onTouchMove(event) {
) {
swiper.updateActiveIndex();
swiper.updateSlidesClasses();
}
if (params.freeMode && params.freeMode.enabled && swiper.freeMode) {
swiper.freeMode.onTouchMove();
}
// Update progress
Expand Down

0 comments on commit 581eea8

Please sign in to comment.