Skip to content

Commit

Permalink
fix: wrong object of params
Browse files Browse the repository at this point in the history
  • Loading branch information
exodusanto committed Sep 14, 2018
1 parent 7f4cd5c commit 9607fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/core/events/onTouchStart.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function (event) {
) {
document.activeElement.blur();
}
if (preventDefault && swiper.allowTouchMove && swiper.touchStartPreventDefault) {
if (preventDefault && swiper.allowTouchMove && params.touchStartPreventDefault) {
e.preventDefault();
}
}
Expand Down

0 comments on commit 9607fcd

Please sign in to comment.