You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2013/04/05 02:31:14 UTC

git commit: updated refs/heads/master to e65d7b7

Updated Branches:
  refs/heads/master 200eccd2a -> e65d7b733


Fix extraneous database list renderings


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/e65d7b73
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/e65d7b73
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/e65d7b73

Branch: refs/heads/master
Commit: e65d7b733cb31f59a5aac0d92ad23ebc21140593
Parents: 200eccd
Author: Russell Branca <ch...@gmail.com>
Authored: Thu Apr 4 17:31:23 2013 -0700
Committer: Russell Branca <ch...@gmail.com>
Committed: Thu Apr 4 17:31:23 2013 -0700

----------------------------------------------------------------------
 src/fauxton/app/modules/databases/views.js |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/e65d7b73/src/fauxton/app/modules/databases/views.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/modules/databases/views.js b/src/fauxton/app/modules/databases/views.js
index 26e902e..1a02979 100644
--- a/src/fauxton/app/modules/databases/views.js
+++ b/src/fauxton/app/modules/databases/views.js
@@ -42,7 +42,6 @@ function(app, Fauxton, FauxtonAPI) {
 
     initialize: function(options) {
       var params = app.getParams();
-      this.collection.on("add", this.render, this);
       this.page = params.page ? parseInt(params.page, 10) : 1;
     },