-
Notifications
You must be signed in to change notification settings - Fork 379
Closed
Labels
Description
I've found that slider.currentPage will report "0" or a number higher than the total # of pages when flipping through using the next/previous arrows or the keyboard. This code fixed it for me:
var curpag=slider.currentPage;
if(curpag>slider.pages){
curpag=1;
}
if(curpag==0){
curpag=slider.pages;
}