Skip to content
Snippets Groups Projects
Commit 82262b4d authored by Carlos Andrés Rocha's avatar Carlos Andrés Rocha
Browse files

Fix bug in news carousel on student dashboard

Clicking on the "bullet" selectors was not working correctly.
parent 03c8c54e
No related branches found
Tags release-2020-11-23-14.27
No related merge requests found
......@@ -40,8 +40,9 @@
if(event) {
clearInterval(carouselTimer);
carouselTimer = setInterval(nextCarouselPage, carouselDelay);
carouselIndex = $(this).closest('li').index();
transitionSpeed = 250;
$pageToShow = $('.news-carousel .page').eq(index);
$pageToShow = $('.news-carousel .page').eq(carouselIndex);
$(this).addClass('current');
} else {
transitionSpeed = 750;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment