Slight cleanup in the Persona sign in code

This commit is contained in:
Eelco Dolstra
2013-11-05 14:10:20 +01:00
parent bdd6e99fbd
commit 3c981bed02
2 changed files with 7 additions and 10 deletions

View File

@ -124,14 +124,12 @@
navigator.id.watch({
loggedInUser: [% c.user_exists ? '"' _ HTML.escape(c.user.username) _ '"' : "null" %],
onlogin: function(assertion) {
$.post("[% c.uri_for('/persona-login') %]", { assertion: assertion })
.done(function(data) {
if (data.error)
bootbox.alert("Login failed: " + data.error);
else
window.location.reload();
})
.fail(function() { bootbox.alert("Server request failed!"); });
requestJSON({
url: "[% c.uri_for('/persona-login') %]",
data: "assertion=" + assertion,
type: 'POST',
success: function(data) { window.location.reload(); }
});
},
onlogout: doLogout
});