From 2902ea95b29a7c2e7696ffb5c9440f8604722fc9 Mon Sep 17 00:00:00 2001 From: Vladimir Kharlampidi Date: Mon, 26 Apr 2021 18:37:22 +0300 Subject: [PATCH] fix(history): fixed issue when using with freeMode without transition --- src/components/history/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/history/history.js b/src/components/history/history.js index d44b4ba20..e6f5ea4b6 100644 --- a/src/components/history/history.js +++ b/src/components/history/history.js @@ -133,7 +133,7 @@ export default { swiper.history.destroy(); } }, - transitionEnd(swiper) { + 'transitionEnd _freeModeNoMomentumRelease': (swiper) => { if (swiper.history.initialized) { swiper.history.setHistory(swiper.params.history.key, swiper.activeIndex); }