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 67184e9 commit 0490dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exe/webui/scripts/exe_effects/exe_effects.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ $exeFX = {
prevA.className = "fx-disabled-link";
// Next
nextLi.removeClass("fx-disabled");
nextA.className = "exeFXSlideLink"+gID+"_"+gID+"-"+(n+1)+"_"+(n+1);
nextA.className = "exeFXSlideLink"+gID+"_"+gID+"-1_1";
} else {
// Prev
prevLi.removeClass("fx-disabled");
Expand Down

0 comments on commit 0490dc8

Please sign in to comment.