Skip to content

Commit

Permalink
2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
weotch committed Dec 11, 2023
1 parent ebb3477 commit cf6ba30
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 @@ -1173,7 +1173,9 @@ notPassive = {
window.removeEventListener('mouseup', this.onPointerUp, passive);
window.removeEventListener('touchmove', this.onPointerMove, passive);
window.removeEventListener('touchend', this.onPointerUp, passive);
return window.removeEventListener('touchmove', this.onWinMove, notPassive);
window.removeEventListener('touchmove', this.onWinMove, notPassive);
window.removeEventListener('contextmenu', this.onPointerUp, passive);
return window.removeEventListener('touchmove', this.stopEvent, notPassive);
},
computed: {
// The current slide or page index. It rounds differently depending on the
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.3.2",
"version": "2.3.3",
"description": "A performance focused Vue carousel designed for SSR/SSG environments.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit cf6ba30

Please sign in to comment.