summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarren Smith <garren.smith@gmail.com>2013-05-16 08:54:56 +0200
committerGarren Smith <garren.smith@gmail.com>2013-05-16 08:54:56 +0200
commitc8bbd093415618fe40bd197101f4a0b8defb3e24 (patch)
tree2883386653f28e723c0ccf9149ebf88dec8a7df9
parent501459c8b70efb814f5eef131201f7954781af1d (diff)
downloadcouchdb-c8bbd093415618fe40bd197101f4a0b8defb3e24.tar.gz
remove establish on Log RouteObject as its no longer needed
-rw-r--r--src/fauxton/app/addons/logs/routes.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/fauxton/app/addons/logs/routes.js b/src/fauxton/app/addons/logs/routes.js
index 669889476..1023ffe52 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()];
}
});