Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E43D310894 for ; Mon, 22 Jul 2013 10:25:19 +0000 (UTC) Received: (qmail 10660 invoked by uid 500); 22 Jul 2013 10:25:19 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 10451 invoked by uid 500); 22 Jul 2013 10:25:19 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 10289 invoked by uid 99); 22 Jul 2013 10:25:18 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jul 2013 10:25:18 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 9598D8B06C3; Mon, 22 Jul 2013 10:25:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jan@apache.org To: commits@couchdb.apache.org Date: Mon, 22 Jul 2013 10:25:33 -0000 Message-Id: <3c3e3c389c134ae4b2cbef7b82e12da6@git.apache.org> In-Reply-To: <10f5b68774524227a2f788b7e382a844@git.apache.org> References: <10f5b68774524227a2f788b7e382a844@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [16/50] [abbrv] git commit: updated refs/heads/1684-feature-db-updates to ea07223 Fauxton fix log not refreshing Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/7cb64422 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/7cb64422 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/7cb64422 Branch: refs/heads/1684-feature-db-updates Commit: 7cb64422f97bca56f0a692ef64c81d93b39648a9 Parents: 3cdaee1 Author: Garren Smith Authored: Thu Jun 6 09:25:35 2013 +0200 Committer: Garren Smith Committed: Thu Jun 6 09:59:10 2013 +0200 ---------------------------------------------------------------------- src/fauxton/app/addons/logs/resources.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/7cb64422/src/fauxton/app/addons/logs/resources.js ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/logs/resources.js b/src/fauxton/app/addons/logs/resources.js index 955b3ec..b64f813 100644 --- a/src/fauxton/app/addons/logs/resources.js +++ b/src/fauxton/app/addons/logs/resources.js @@ -163,7 +163,7 @@ function (app, FauxtonAPI, Backbone) { // Interval already set if (this.intervalId) { return ; } - that.intervalId = setInterval(function () { + this.intervalId = setInterval(function () { collection.fetch(); }, this.refreshTime);