aboutsummaryrefslogtreecommitdiffstats
path: root/src/ControlBar.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ControlBar.js')
-rw-r--r--src/ControlBar.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ControlBar.js b/src/ControlBar.js
index 3e1f0b57..bed7742f 100644
--- a/src/ControlBar.js
+++ b/src/ControlBar.js
@@ -1,8 +1,9 @@
// Copyright (C) 2008,2009 BRAT Tech LLC
-nglr.ControlBar = function (document, serverUrl) {
+nglr.ControlBar = function (document, serverUrl, database) {
this.document = document;
this.serverUrl = serverUrl;
+ this.database = database;
this.window = window;
this.callbacks = [];
};
@@ -21,7 +22,7 @@ nglr.ControlBar.HTML =
nglr.ControlBar.prototype.login = function (loginSubmitFn) {
this.callbacks.push(loginSubmitFn);
if (this.callbacks.length == 1) {
- this.doTemplate("/user_session/new.mini?return_url=" + encodeURIComponent(this.urlWithoutAnchor()));
+ this.doTemplate("/user_session/new.mini?database="+encodeURIComponent(this.database)+"&return_url=" + encodeURIComponent(this.urlWithoutAnchor()));
}
};