Skip to content

Commit

Permalink
Fix swipe on mobile
Browse files Browse the repository at this point in the history
Fixing this issue : primefaces#1584
  • Loading branch information
TakCastel authored Nov 2, 2021
1 parent e2ce66b commit c0de4cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/carousel/Carousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export default {
},
onTouchMove(e) {
if (e.cancelable) {
e.preventDefault();
e.stopPropagation();
}
},
onTouchEnd(e) {
Expand Down

0 comments on commit c0de4cc

Please sign in to comment.