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/05/16 08:55:32 UTC

git commit: updated refs/heads/master to c8bbd09

Updated Branches:
  refs/heads/master 501459c8b -> c8bbd0934


remove establish on Log RouteObject as its no longer needed


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

Branch: refs/heads/master
Commit: c8bbd093415618fe40bd197101f4a0b8defb3e24
Parents: 501459c
Author: Garren Smith <ga...@gmail.com>
Authored: Thu May 16 08:54:56 2013 +0200
Committer: Garren Smith <ga...@gmail.com>
Committed: Thu May 16 08:54:56 2013 +0200

----------------------------------------------------------------------
 src/fauxton/app/addons/logs/routes.js |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/c8bbd093/src/fauxton/app/addons/logs/routes.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/logs/routes.js b/src/fauxton/app/addons/logs/routes.js
index 6698894..1023ffe 100644
--- a/src/fauxton/app/addons/logs/routes.js
+++ b/src/fauxton/app/addons/logs/routes.js
@@ -45,10 +45,6 @@ function(app, FauxtonAPI, Log) {
 
     showLog: function () {
       this.setView("#dashboard-content", new Log.Views.View({collection: this.logs}));
-    },
-
-    establish: function() {
-      return [this.logs.fetch()];
     }
   });