Skip to content

Commit

Permalink
Fix #763 - Carousel FX: The "Next" link skipped one slide.
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciogros committed Sep 12, 2024
1 parent 73127eb commit 67184e9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions exe/webui/scripts/exe_effects/exe_effects.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,10 +552,7 @@ $exeFX = {
prevA.className = "fx-disabled-link";
// Next
nextLi.removeClass("fx-disabled");
nextA.onclick = function(){
$exeFX.carousel.show(gID,gID+"-1",1);
return false;
}
nextA.className = "exeFXSlideLink"+gID+"_"+gID+"-"+(n+1)+"_"+(n+1);
} else {
// Prev
prevLi.removeClass("fx-disabled");
Expand Down

0 comments on commit 67184e9

Please sign in to comment.