Forgot about scaling desired delay between consecutive snapshots...

This commit is contained in:
mgeeky
2016-04-18 10:29:18 +02:00
parent ffdb942cf1
commit 3edd291064

View File

@@ -26,7 +26,7 @@ beef.execute(function() {
takeit = function() {
for(var i = 0; i < takes; i++) {
beef.debug('Taking ' + i + '. snapshot');
setTimeout(snap, delay);
setTimeout(snap, delay * i);
}
};