This commit is contained in:
Jon Lambson 2017-07-12 09:59:07 -06:00
parent 37bd95fd54
commit 624ccf02a0
1 changed files with 3 additions and 1 deletions

View File

@ -262,7 +262,7 @@ $(function () {
// Reference Implementation
util.submitLoginCode = function (opts) {
console.log("clicked???")
// TODO
// perhaps we should check that the code is valid before continuing to login (so that we don't send the key)
@ -311,6 +311,8 @@ $(function () {
return getAccount(session).then(function () {
return getGrants(session);
});
}, function (err) {
console.log(err);
});
};