Sure, try finding the following code withiin the .js file:
Code:
config.$togglerdiv.click(function(){
featuredcontentglider.cancelautorotate(config.togglerid)
})
and replace that with:
Code:
config.$togglerdiv.click(function(){
featuredcontentglider.cancelautorotate(config.togglerid)
if (config.autorotate==true){ //auto rotate contents?
config.stepcount=0 //set steps taken
config.totalsteps=config.$contentdivs.length*config.autorotateconfig[1] //Total steps limit: num of contents x num of user specified cycles)
setTimeout(function(){featuredcontentglider.autorotate(config)}, 3000)
}
})
Change 3000 to the pause before the content starts rotating again, in milliseconds.
Bookmarks