We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e8def commit 472768cCopy full SHA for 472768c
index.js
@@ -1384,7 +1384,9 @@ notPassive = {
1384
methods: {
1385
// Cancel an Event
1386
stopEvent: function (e) {
1387
- return e.preventDefault();
+ if (e.cancelable) {
1388
+ return e.preventDefault();
1389
+ }
1390
},
1391
// Keep track of whether user is dragging
1392
onPointerDown: function (pointerEvent) {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-ssr-carousel",
3
- "version": "2.4.1",
+ "version": "2.4.2",
4
"description": "A performance focused Vue carousel designed for SSR/SSG environments.",
5
"main": "index.js",
6
"scripts": {
0 commit comments