You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our case, where we convert PNGs to WEBP images on the fly, vue-slick-slider fires afterChange event with currentSlide = 1 without any visible change. Prop autoplay is set to false.
In our case, where we convert PNGs to WEBP images on the fly, vue-slick-slider fires
afterChange
event withcurrentSlide = 1
without any visible change. Propautoplay
is set tofalse
.After some investigation we found that this line
https://github.com/gs-shop/vue-slick-carousel/blob/master/src/InnerSlider.vue#L91
should probably be
if (spec.autoplay)
instead ofif (this.autoPlay)
The text was updated successfully, but these errors were encountered: