
Originally Posted by
geektastic
Hello again! Now I need to remove the fastforward/rewind motion when the gallery is set to autostep.
Any ideas? Same file as you uploaded but with the effect removed from autostep.
Untested, but inside the modified .js file, try finding the line in red below, and add to it the following two lines:
Code:
var speed=Math.abs(config.currentpanel-pindex)<=1 ? config.panelbehavior.speed : 1
if (config.autostep && config.autostep.enable && config.autostep.status!="stopped")
speed=config.panelbehavior.speed
Bookmarks