From 3edd291064e5e411ff68b3486a448f3c42528d79 Mon Sep 17 00:00:00 2001 From: mgeeky Date: Mon, 18 Apr 2016 10:29:18 +0200 Subject: [PATCH] Forgot about scaling desired delay between consecutive snapshots... --- modules/browser/spyder_eye/command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/browser/spyder_eye/command.js b/modules/browser/spyder_eye/command.js index c32f017da..f9a1fea60 100644 --- a/modules/browser/spyder_eye/command.js +++ b/modules/browser/spyder_eye/command.js @@ -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); } };