
Originally Posted by
mackula
That's because the pause timer continues to run unabated when you click on a thumbnail link. So if there's 1 sec left before the script switches from slide 1 to slide 2 when you clicked on a link to directly go to slide 2, that 1 sec is then applied to the time before slide 2 automatically changes to slide 3.
With that said, to reset the pause timer each time the pagination link is clicked on, instead of the original change below:
Code:
pdiv[setting.revealtype]=function(){
//featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
}
Change the above to:
Code:
pdiv[setting.revealtype]=function(){
featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
featuredcontentslider.autorotate(setting)
}
Bookmarks