evo-vue-carousel 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/evo-vue-carousel.js +2 -2
- package/package.json +1 -1
package/dist/evo-vue-carousel.js
CHANGED
|
@@ -1271,12 +1271,12 @@ function As(e, t) {
|
|
|
1271
1271
|
case "gap":
|
|
1272
1272
|
return r === 1 ? 0 : +e;
|
|
1273
1273
|
case "autoplay":
|
|
1274
|
-
return e ? e === !0 ? 5e3 : +e
|
|
1274
|
+
return !e || e === "false" || e === "0" ? !1 : e === !0 || e === "true" ? 5e3 : +e;
|
|
1275
1275
|
case "wrap":
|
|
1276
1276
|
case "pauseOnHover":
|
|
1277
1277
|
case "hideNavigation":
|
|
1278
1278
|
case "hidePagination":
|
|
1279
|
-
return ls(e) ? e : !!e;
|
|
1279
|
+
return e === "true" ? e = !0 : e === "false" && (e = !1), ls(e) ? e : !!e;
|
|
1280
1280
|
default:
|
|
1281
1281
|
return e;
|
|
1282
1282
|
}
|