Skip to content
Snippets Groups Projects
Commit 682b956e authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Make the options passsed to the check_registration controller more explicit. ...

Make the options passsed to the check_registration controller more explicit.  Uncollapse the signIn divs in dialog.ejs  Fix string extraction.
parent 7be7355b
No related branches found
No related tags found
No related merge requests found
......@@ -33,11 +33,12 @@ BrowserID.Modules.Actions = (function() {
}
function startRegCheckService(options, verifier, message, password) {
var controller = startService("check_registration", _.extend(options, {
var controller = startService("check_registration", {
verifier: verifier,
verificationMessage: message,
password: password
}));
password: password,
siteName: options.siteName
});
controller.startCheck();
}
......
......@@ -55,7 +55,7 @@
<p class="submit cf buttonrow">
<button id="<%= password_reset ? "password_reset" : "verify_user" %>">
<%= gettext(password_reset ? 'reset password' : 'done') %>
<%= password_reset ? gettext('reset password') : gettext('done') %>
</button>
<% if(cancelable) { %>
......
......@@ -12,7 +12,9 @@
<div id="signIn">
<div class="table">
<div class="vertical contents">
<div class="vertical">
<div class="contents">
</div>
</div>
</div>
<div class="arrowContainer">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment