You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2014/02/19 15:48:17 UTC

[20/23] couchdb commit: updated refs/heads/paginate-api-options to 0fca3e9

Fix query options not toggling


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

Branch: refs/heads/paginate-api-options
Commit: ab723be265829029a736343418627588abfd030f
Parents: a10ecce
Author: Garren Smith <ga...@gmail.com>
Authored: Thu Feb 13 13:46:11 2014 +0200
Committer: Garren Smith <ga...@gmail.com>
Committed: Wed Feb 19 15:24:56 2014 +0200

----------------------------------------------------------------------
 src/fauxton/app/addons/documents/views.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/ab723be2/src/fauxton/app/addons/documents/views.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/documents/views.js b/src/fauxton/app/addons/documents/views.js
index 3b334cd..2379c50 100644
--- a/src/fauxton/app/addons/documents/views.js
+++ b/src/fauxton/app/addons/documents/views.js
@@ -480,11 +480,12 @@ function(app, FauxtonAPI, Components, Documents, Databases, pouchdb, resizeColum
     },
 
     events: {
-      'click #query-nav': "toggleQuery"
+      'click #toggle-query': "toggleQuery"
     },
 
     toggleQuery: function (event) {
       $('#dashboard-content').scrollTop(0);
+      console.log('hi');
       this.$('#query').toggle('slow');
     },