MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / nextSlide

Function nextSlide

docs/script.js:129–132  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

127 }
128
129 function nextSlide() {
130 currentSlide = (currentSlide + 1) % totalSlides;
131 updateCarousel();
132 }
133
134 function prevSlide() {
135 currentSlide = (currentSlide - 1 + totalSlides) % totalSlides;

Callers 2

script.jsFile · 0.85
handleKeydownFunction · 0.85

Calls 1

updateCarouselFunction · 0.85

Tested by

no test coverage detected