"easyAccor开发者_开发知识库dion" jquery plugin stop its movement after clicking on a tab and never resume after that.but i need it , should i implement it myself or this plugin has it embeded? i couldn't find such option.
Search for this part of code:
jQuery(this).find('dt').not('active').click(function(){
jQuery(this).activateSlide();
clearTimeout(timerInstance.value);
});
Replace it with:
jQuery(this).find('dt').not('active').click(function(){
jQuery(this).activateSlide();
clearTimeout(timerInstance.value);
timerInstance.value = setTimeout(function(){
accordianInstance.rotateSlides(interval, timerInstance);
}, interval);
});
Greetings,
Michel
精彩评论