summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fauxton/app/api.js1
-rw-r--r--src/fauxton/app/helpers.js4
2 files changed, 2 insertions, 3 deletions
diff --git a/src/fauxton/app/api.js b/src/fauxton/app/api.js
index d1dc268e7..795c25fa9 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'));
}
diff --git a/src/fauxton/app/helpers.js b/src/fauxton/app/helpers.js
index c1cc4fa96..e775e401c 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