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
{{ message }}
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
Looks like it's to do with a way you grab "next" item when clicking previous on line 51 in Carousel.js. As a quick and dirty solution for myself I fixed it by changing it to this from line 51 ->
next = next;
if (!next) {
if (type == 'prev') {
next = children[children.indexOf(active) - 1]
} else {
next = children[children.indexOf(active) + 1]
}
}
Looks like "this._sliding" is returning true after multiple click on previous chevron even when sliding has stopped
The text was updated successfully, but these errors were encountered: