Skip to content

Commit

Permalink
2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
weotch committed Apr 9, 2024
1 parent 83e8def commit 472768c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,9 @@ notPassive = {
methods: {
// Cancel an Event
stopEvent: function (e) {
return e.preventDefault();
if (e.cancelable) {
return e.preventDefault();
}
},
// Keep track of whether user is dragging
onPointerDown: function (pointerEvent) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-ssr-carousel",
"version": "2.4.1",
"version": "2.4.2",
"description": "A performance focused Vue carousel designed for SSR/SSG environments.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 472768c

Please sign in to comment.