summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fauxton/app/app.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/fauxton/app/app.js b/src/fauxton/app/app.js
index d5c9d1e40..98714ab16 100644
--- a/src/fauxton/app/app.js
+++ b/src/fauxton/app/app.js
@@ -43,9 +43,14 @@ function($, _, Backbone, Helpers, Mixins) {
// move this to here otherwise every once in a while,
// the footer fails to configure as the url for it is not configured.
// Having the host declared here fixes it
- host: "../..",//window.location.protocol + "//" + window.location.host,
- urlPrefix: '../..'
+ host: "../.."
};
+
+ // Kind of hacky - add this in so that Fauxton still works as a couchapp,
+ // we should look at moving the app.host configuration to grunt
+ if (window.location.href.match(/_design/)) {
+ app.host = window.location.protocol + "//" + window.location.host;
+ }
// Localize or create a new JavaScript Template object.
var JST = window.JST = window.JST || {};