remove useless forcerenders for the breadcrumbs
Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/09649df8 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/09649df8 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/09649df8 Branch: refs/heads/secondary-indexes Commit: 09649df86273ec205100794f8a732104ab38fb5b Parents: a257908 Author: deathbearbrown <[email protected]> Authored: Sun Aug 24 16:33:43 2014 +0200 Committer: deathbearbrown <[email protected]> Committed: Mon Aug 25 09:37:36 2014 -0400 ---------------------------------------------------------------------- app/addons/documents/routes.js | 6 +++--- app/addons/indexes/routes-core.js | 4 +--- 2 files changed, 4 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/09649df8/app/addons/documents/routes.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/routes.js b/app/addons/documents/routes.js index 324a9ea..7f71bb9 100644 --- a/app/addons/documents/routes.js +++ b/app/addons/documents/routes.js @@ -412,7 +412,7 @@ function(app, FauxtonAPI, Components, Documents, Changes, DocEditor, Databases, this.documentsView.setCollection(collection); this.documentsView.setParams(docParams, urlParams); - this.leftheader.forceRender(); + this.documentsView.forceRender(); this.rightHeader.updateApiUrl([collection.urlRef("apiurl", urlParams), "docs"]); @@ -425,7 +425,7 @@ function(app, FauxtonAPI, Components, Documents, Changes, DocEditor, Databases, // We need to restore the collection parameters to the defaults (1st page) // and update the page size this.perPage = perPage; - this.leftheader.forceRender(); + this.documentsView.forceRender(); this.documentsView.collection.pageSizeReset(perPage, {fetch: false}); this.setDocPerPageLimit(perPage); @@ -437,7 +437,7 @@ function(app, FauxtonAPI, Components, Documents, Changes, DocEditor, Databases, paginate: function (options) { var collection = this.documentsView.collection; - this.leftheader.forceRender(); + this.documentsView.forceRender(); collection.paging.pageSize = options.perPage; var promise = collection[options.direction]({fetch: false}); http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/09649df8/app/addons/indexes/routes-core.js ---------------------------------------------------------------------- diff --git a/app/addons/indexes/routes-core.js b/app/addons/indexes/routes-core.js index a341d41..65f33bc 100644 --- a/app/addons/indexes/routes-core.js +++ b/app/addons/indexes/routes-core.js @@ -58,7 +58,6 @@ function (app, FauxtonAPI, Databases, Views, Documents, Resources) { // We need to restore the collection parameters to the defaults (1st page) // and update the page size this.perPage = perPage; - this.leftheader.forceRender(); this.documentsView.forceRender(); this.documentsView.collection.pageSizeReset(perPage, {fetch: false}); this.setDocPerPageLimit(perPage); @@ -77,7 +76,7 @@ function (app, FauxtonAPI, Databases, Views, Documents, Resources) { paginate: function (options) { var collection = this.documentsView.collection; - this.leftheader.forceRender(); + this.documentsView.forceRender(); collection.paging.pageSize = options.perPage; var promise = collection[options.direction]({fetch: false}); @@ -162,7 +161,6 @@ function (app, FauxtonAPI, Databases, Views, Documents, Resources) { this.documentsView.setCollection(collection); this.documentsView.setParams(docParams, urlParams); - this.leftheader.forceRender(); this.documentsView.forceRender(); this.rightHeader.updateApiUrl([collection.urlRef("apiurl", urlParams), "docs"]);
