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/05/15 23:05:17 UTC

git commit: updated refs/heads/master to a71fc20

Updated Branches:
  refs/heads/master f6b21891a -> a71fc206d


Minor route object bug fixes


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

Branch: refs/heads/master
Commit: a71fc206d9480bf13321bd280341ab9460cc3919
Parents: f6b2189
Author: Russell Branca <ch...@gmail.com>
Authored: Wed May 15 14:05:19 2013 -0700
Committer: Russell Branca <ch...@gmail.com>
Committed: Wed May 15 14:05:19 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/couchdb/blob/a71fc206/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 ae0a6b6..6698894 100644
--- a/src/fauxton/app/addons/logs/routes.js
+++ b/src/fauxton/app/addons/logs/routes.js
@@ -47,7 +47,7 @@ function(app, FauxtonAPI, Log) {
       this.setView("#dashboard-content", new Log.Views.View({collection: this.logs}));
     },
 
-    e1stablish: function() {
+    establish: function() {
       return [this.logs.fetch()];
     }
   });

http://git-wip-us.apache.org/repos/asf/couchdb/blob/a71fc206/src/fauxton/app/router.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/router.js b/src/fauxton/app/router.js
index 4d25115..7587df6 100644
--- a/src/fauxton/app/router.js
+++ b/src/fauxton/app/router.js
@@ -89,7 +89,7 @@ function(req, app, Initialize, FauxtonAPI, Fauxton, Layout, Databases, Documents
         if (module){
           module.initialize();
           // This is pure routes the addon provides
-          if (module.Routes) {
+          if (module.RouteObjects) {
             _.each(module.RouteObjects, this.addModuleRouteObject, this);
           }
         }