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
I have a carousel with 5 slides. When I focus the carousel (click on a dot to move to for ex. slide #2), and hit tab, the carousel scrolls to the last slide (#5). I am using flickity-imagesloaded and initializing it like so:
{
accessibility: true,
draggable: '>1',
friction: 0.4,
prevNextButtons: true,
imagesLoaded: true
}) ```
Everything else appears to working correctly. Any idea what might cause this bug?
My suspicion is that this behavior is caused by a button that is on the last flickity slide.
The text was updated successfully, but these errors were encountered:
It looks like the issue was that there was a focus able button on the last slide. When I hit tab, it would jump to that slide because the element would gain focus. It's a nice feature to be able to jump to the slide with an element that is focused, but having an option to turn that off might be nice.
I have a carousel with 5 slides. When I focus the carousel (click on a dot to move to for ex. slide #2), and hit tab, the carousel scrolls to the last slide (#5). I am using flickity-imagesloaded and initializing it like so:
The text was updated successfully, but these errors were encountered: