Fauxton: Fix bug not removing old reduce function
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/277b730e Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/277b730e Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/277b730e Branch: refs/heads/1960-paginate-all_dbs Commit: 277b730ea4e0588af7b0082521515415a757a0ee Parents: d734db0 Author: Garren Smith <[email protected]> Authored: Tue Dec 17 09:42:00 2013 +0200 Committer: Garren Smith <[email protected]> Committed: Tue Dec 17 09:42:00 2013 +0200 ---------------------------------------------------------------------- src/fauxton/app/modules/documents/resources.js | 8 +++----- src/fauxton/app/modules/documents/views.js | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/277b730e/src/fauxton/app/modules/documents/resources.js ---------------------------------------------------------------------- diff --git a/src/fauxton/app/modules/documents/resources.js b/src/fauxton/app/modules/documents/resources.js index 75df7d1..8633605 100644 --- a/src/fauxton/app/modules/documents/resources.js +++ b/src/fauxton/app/modules/documents/resources.js @@ -99,11 +99,9 @@ function(app, FauxtonAPI) { reduce: reduce }; } else { - if (!views[view]) { - views[view] = {}; - } - - views[view].map = map; + views[view] = { + map: map + }; } this.set({views: views}); http://git-wip-us.apache.org/repos/asf/couchdb/blob/277b730e/src/fauxton/app/modules/documents/views.js ---------------------------------------------------------------------- diff --git a/src/fauxton/app/modules/documents/views.js b/src/fauxton/app/modules/documents/views.js index cac4f48..faf3539 100644 --- a/src/fauxton/app/modules/documents/views.js +++ b/src/fauxton/app/modules/documents/views.js @@ -1545,7 +1545,7 @@ function(app, FauxtonAPI, Components, Documents, Databases, pouchdb, resizeColum database: this.database, viewName: this.viewName, ddocName: this.model.id, - hasReduce: this.hasReduce + hasReduce: this.hasReduce() })); },
