Updated Branches: refs/heads/API-url-docs 78e7a680f -> 73de1b0d3
cleaning up console logs Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/73de1b0d Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/73de1b0d Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/73de1b0d Branch: refs/heads/API-url-docs Commit: 73de1b0d3e22ecbc32ca897b24e690ee14866162 Parents: 78e7a68 Author: suelockwood <[email protected]> Authored: Thu Oct 10 11:37:38 2013 -0400 Committer: suelockwood <[email protected]> Committed: Thu Oct 10 11:37:38 2013 -0400 ---------------------------------------------------------------------- src/fauxton/app/api.js | 1 - src/fauxton/app/helpers.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/73de1b0d/src/fauxton/app/api.js ---------------------------------------------------------------------- diff --git a/src/fauxton/app/api.js b/src/fauxton/app/api.js index d1dc268..795c25f 100644 --- a/src/fauxton/app/api.js +++ b/src/fauxton/app/api.js @@ -364,7 +364,6 @@ function(app, Fauxton) { }); if (this.get('apiUrl')){ - console.log(this.get('apiUrl'), "API URL"); masterLayout.apiBar.update(this.get('apiUrl')); } http://git-wip-us.apache.org/repos/asf/couchdb/blob/73de1b0d/src/fauxton/app/helpers.js ---------------------------------------------------------------------- diff --git a/src/fauxton/app/helpers.js b/src/fauxton/app/helpers.js index c1cc4fa..e775e40 100644 --- a/src/fauxton/app/helpers.js +++ b/src/fauxton/app/helpers.js @@ -48,8 +48,8 @@ function() { "log": "http://docs.couchdb.org/en/latest/api/server/common.html?highlight=stats#log" }; - Helpers.getDocUrl = function(getthis){ - return Helpers.docs[getthis] || '#'; + Helpers.getDocUrl = function(docKey){ + return Helpers.docs[docKey] || '#'; }; // File size pretty printing, taken from futon.format.js
