mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Fix new message number validation
This commit is contained in:
@@ -25,6 +25,7 @@ var Whisper = Whisper || {};
|
||||
var number = libphonenumber.util.verifyNumber(val, myRegionCode);
|
||||
}
|
||||
this.removeError();
|
||||
return number;
|
||||
} catch(ex) {
|
||||
this.$el.addClass('error');
|
||||
console.log(ex);
|
||||
@@ -38,8 +39,7 @@ var Whisper = Whisper || {};
|
||||
this.template = $('#new-message-form').html();
|
||||
Mustache.parse(this.template);
|
||||
this.render();
|
||||
this.input = this.$el.find('input.number');
|
||||
new MessageRecipientInputView({el: this.input});
|
||||
this.input = new MessageRecipientInputView({el: this.$el.find('input.number')});
|
||||
},
|
||||
|
||||
events: {
|
||||
|
||||
Reference in New Issue
Block a user