You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2013/07/22 12:25:40 UTC

[23/50] [abbrv] git commit: updated refs/heads/1684-feature-db-updates to ea07223

Spacing nits


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

Branch: refs/heads/1684-feature-db-updates
Commit: 85f3c8ed5a62ea48dd27c7f078ced6d3aa2c4dca
Parents: dfd39d5
Author: Russell Branca <ch...@gmail.com>
Authored: Thu May 30 11:02:42 2013 -0700
Committer: Russell Branca <ch...@gmail.com>
Committed: Mon Jun 17 16:19:11 2013 -0700

----------------------------------------------------------------------
 src/fauxton/app/modules/databases/routes.js | 8 ++++----
 src/fauxton/app/router.js                   | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/85f3c8ed/src/fauxton/app/modules/databases/routes.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/modules/databases/routes.js b/src/fauxton/app/modules/databases/routes.js
index 7b45413..5772ee8 100644
--- a/src/fauxton/app/modules/databases/routes.js
+++ b/src/fauxton/app/modules/databases/routes.js
@@ -32,7 +32,7 @@ function(app, FauxtonAPI, Databases, Views) {
 
     routes: {
       "": "allDatabases",
-      "index.html": "allDatabases", 
+      "index.html": "allDatabases",
       "_all_dbs(:params)": "allDatabases"
     },
 
@@ -45,7 +45,7 @@ function(app, FauxtonAPI, Databases, Views) {
       this.deferred = FauxtonAPI.Deferred();
 
       this.sidebarView = this.setView("#sidebar-content", new Views.Sidebar({
-          collection: this.databases
+        collection: this.databases
       }));
     },
 
@@ -54,7 +54,7 @@ function(app, FauxtonAPI, Databases, Views) {
           dbPage = params.page;
 
       this.databasesView = this.setView("#dashboard-content", new Views.List({
-          collection: this.databases
+        collection: this.databases
       }));
 
       this.databasesView.setPage(dbPage);
@@ -75,7 +75,7 @@ function(app, FauxtonAPI, Databases, Views) {
       return [deferred];
     }
   });
-  
+
   Databases.RouteObjects = [AllDbsRouteObject];
 
   return Databases;

http://git-wip-us.apache.org/repos/asf/couchdb/blob/85f3c8ed/src/fauxton/app/router.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/router.js b/src/fauxton/app/router.js
index fea1b32..e90e6e7 100644
--- a/src/fauxton/app/router.js
+++ b/src/fauxton/app/router.js
@@ -71,7 +71,7 @@ function(req, app, Initialize, FauxtonAPI, Fauxton, Layout, Databases, Documents
           authPromise.then(function () {
             routeObject.routeCallback(route, args);
             routeObject.renderWith(route, masterLayout, args);
-          }, function () { 
+          }, function () {
             FauxtonAPI.auth.authDeniedCb();
          });