-
|
Is there a way to skip the verticals in autoSlide mode? Using grid navigation, moving through the slides with the right arrow key skips the verticals, as desired, but the autoSlide mode follows each vertical. I see this behavior in versions 4.2.1 and 4.0.2. Thanks! Using settings: If this is intended, what code should I tweak to get the behavior I want? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
You can fix this by using autoSlideMethod: () => Reveal.navigateRight()As of reveal.js 4.0 |
Beta Was this translation helpful? Give feedback.
You can fix this by using
As of reveal.js 4.0
Reveal.navigateRightisn't available before reveal.js is initialized so it ends up being undefined in your original example. There's no need to specify anavigationModefor this to work. I'll update the outdated example in the docs so no one else runs into this.