From f3393fa00ed1294de7aa460b415c8c1e8d7efecf Mon Sep 17 00:00:00 2001 From: Michael Wiencek Date: Sun, 28 Dec 2014 23:52:47 -0600 Subject: [PATCH] s/foo/self/ --- batch-add-recording-relationships.user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/batch-add-recording-relationships.user.js b/batch-add-recording-relationships.user.js index a73cbc5..0c68de0 100644 --- a/batch-add-recording-relationships.user.js +++ b/batch-add-recording-relationships.user.js @@ -69,9 +69,9 @@ function batch_recording_rels() { var diff = REQUEST_COUNT - 9; var timeout = diff * 1000; - setTimeout(function (foo) { foo.next() }, this.rate + timeout, this); + setTimeout(function (self) { self.next() }, this.rate + timeout, this); } else { - setTimeout(function (foo) { foo.next() }, this.rate, this); + setTimeout(function (self) { self.next() }, this.rate, this); } }; @@ -100,7 +100,7 @@ function batch_recording_rels() { this.next(); } else { var timeout = this.rate - now + this.last; - setTimeout(function (foo) { foo.next() }, timeout, this); + setTimeout(function (self) { self.next() }, timeout, this); } };