From 288091978711bba1e890597cdc31c68ebf8daf73 Mon Sep 17 00:00:00 2001 From: Jordan Bates Date: Sun, 28 Apr 2013 09:00:02 -0700 Subject: [PATCH] This was unnecessary --- builds/4chan-X.js | 3 +-- builds/4chan-X.user.js | 3 +-- builds/crx/script.js | 3 +-- src/Monitoring/ThreadUpdater.coffee | 1 - 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/builds/4chan-X.js b/builds/4chan-X.js index 0cdfbb973..af0bd9ac9 100644 --- a/builds/4chan-X.js +++ b/builds/4chan-X.js @@ -6765,8 +6765,7 @@ if (ThreadUpdater.online) { return ThreadUpdater.timeoutID = setTimeout(ThreadUpdater.timeout, 1000); } else { - clearTimeout(ThreadUpdater.timeoutID); - return ThreadUpdater.set('timer', 'Update'); + return clearTimeout(ThreadUpdater.timeoutID); } }, interval: function() { diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index abd1a9bb3..e1cae884b 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -6786,8 +6786,7 @@ if (ThreadUpdater.online) { return ThreadUpdater.timeoutID = setTimeout(ThreadUpdater.timeout, 1000); } else { - clearTimeout(ThreadUpdater.timeoutID); - return ThreadUpdater.set('timer', 'Update'); + return clearTimeout(ThreadUpdater.timeoutID); } }, interval: function() { diff --git a/builds/crx/script.js b/builds/crx/script.js index 0940138fc..edaca695b 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -6765,8 +6765,7 @@ if (ThreadUpdater.online) { return ThreadUpdater.timeoutID = setTimeout(ThreadUpdater.timeout, 1000); } else { - clearTimeout(ThreadUpdater.timeoutID); - return ThreadUpdater.set('timer', 'Update'); + return clearTimeout(ThreadUpdater.timeoutID); } }, interval: function() { diff --git a/src/Monitoring/ThreadUpdater.coffee b/src/Monitoring/ThreadUpdater.coffee index 43a1d1465..6e696b7f6 100644 --- a/src/Monitoring/ThreadUpdater.coffee +++ b/src/Monitoring/ThreadUpdater.coffee @@ -110,7 +110,6 @@ ThreadUpdater = ThreadUpdater.timeoutID = setTimeout ThreadUpdater.timeout, 1000 else clearTimeout ThreadUpdater.timeoutID - ThreadUpdater.set 'timer', 'Update' interval: -> val = +@value if val < 1 then val = 1