Draw attention to invalid numbers
This commit is contained in:
parent
746e6530b9
commit
63d232dedb
1 changed files with 10 additions and 1 deletions
|
@ -102,7 +102,7 @@ var Whisper = Whisper || {};
|
|||
comparator: false
|
||||
});
|
||||
// View to display the selected recipients
|
||||
new Whisper.RecipientListView({
|
||||
this.recipients_view = new Whisper.RecipientListView({
|
||||
collection: this.recipients,
|
||||
el: this.$el.find('.recipients')
|
||||
});
|
||||
|
@ -158,6 +158,15 @@ var Whisper = Whisper || {};
|
|||
},
|
||||
|
||||
create: function() {
|
||||
var errors = this.recipients_view.$el.find('.error');
|
||||
if (errors.length) {
|
||||
|
||||
// TODO: css animation or error notification
|
||||
errors.removeClass('error');
|
||||
setTimeout(function(){ errors.addClass('error'); }, 300);
|
||||
|
||||
return;
|
||||
}
|
||||
if (this.recipients.length > 1) {
|
||||
this.createGroup();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue