Fix double-click on design documents in all-docs-list Closes COUCHDB-2247
Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/2da1d54e Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/2da1d54e Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/2da1d54e Branch: refs/heads/secondary-indexes Commit: 2da1d54e79e62c58622c2a77f8b125e87f1fcc89 Parents: 4b3e5c9 Author: Robert Kowalski <[email protected]> Authored: Wed Aug 13 21:17:09 2014 +0200 Committer: Robert Kowalski <[email protected]> Committed: Mon Aug 18 20:46:04 2014 +0200 ---------------------------------------------------------------------- app/addons/documents/views.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/2da1d54e/app/addons/documents/views.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/views.js b/app/addons/documents/views.js index 545f4d6..7085bd8 100644 --- a/app/addons/documents/views.js +++ b/app/addons/documents/views.js @@ -114,7 +114,7 @@ function(app, FauxtonAPI, Components, Documents, Databases, Views, QueryOptions, edit: function(event) { event.preventDefault(); - FauxtonAPI.navigate("#" + this.model.url('app')); + FauxtonAPI.navigate("#" + this.model.url('web-index')); }, destroy: function(event) {
