I need to run the goTo()
function cautiously because it would download a large image each time, so to skip the unintended changes, I'm checking if the value has changed and
a certain time has elapsed (2000ms).
scrubber.onValueChanged = function (value) {
var timer;
if (gallery.getCurrentIndex() !== value) {
console.log('value changed');
clearTimeout(timer); console.log('timer reset');
}
timer = setTimeout(function() {
console.log('updating...');
gallery.goTo(value);
}, 2000);
};
.. this works but it doesn't skip the changes it should, it still runs the goTo()
function for ALL the values I have moved from, to and in-between.
timer
is a local variable. So every time the function is calledtimer
is being reset andclearTimeout(timer)
doesn't work as expected. To fix that movetimer
variable outside the function scope or make it global.