Added displayError to sign in.

This commit is contained in:
Nick Chapman 2014-01-21 16:36:51 -08:00
Родитель 46e093be55
Коммит 2388c69010
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -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 () {