Added displayError to sign in.
This commit is contained in:
Родитель
46e093be55
Коммит
2388c69010
|
@ -46,11 +46,9 @@ function (_, BaseView, SignInTemplate, Session, FxaClient, PasswordMixin) {
|
|||
});
|
||||
router.navigate('settings', { trigger: true });
|
||||
})
|
||||
.done(null, function (err) {
|
||||
this.$('.error').html(err.message);
|
||||
|
||||
console.error('Error?', err);
|
||||
}.bind(this));
|
||||
.done(null, _.bind(function (err) {
|
||||
this.displayError(err.message);
|
||||
}, this));
|
||||
},
|
||||
|
||||
isValid: function () {
|
||||
|
|
Загрузка…
Ссылка в новой задаче