You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2013/06/06 09:59:27 UTC

git commit: updated refs/heads/master to 7cb6442

Updated Branches:
  refs/heads/master 3cdaee1b8 -> 7cb64422f


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/master
Commit: 7cb64422f97bca56f0a692ef64c81d93b39648a9
Parents: 3cdaee1
Author: Garren Smith <ga...@gmail.com>
Authored: Thu Jun 6 09:25:35 2013 +0200
Committer: Garren Smith <ga...@gmail.com>
Committed: Thu Jun 6 09:59:10 2013 +0200

----------------------------------------------------------------------
 src/fauxton/app/addons/logs/resources.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


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);