mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-27 05:38:12 +00:00
Remove old convo compose view
This commit is contained in:
@@ -17,7 +17,6 @@
|
||||
|
||||
|
||||
new Whisper.ConversationListView({el: $('#contacts')});
|
||||
new Whisper.ConversationComposeView({el: $('body')});
|
||||
Whisper.Threads.fetch({reset: true});
|
||||
|
||||
textsecure.registerOnLoadFunction(function() {
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
Whisper.ConversationComposeView = Backbone.View.extend({
|
||||
events : {
|
||||
'click #send_link' : 'show_send',
|
||||
'click #send' : 'focus_send',
|
||||
'click #compose-cancel' : 'hide_send',
|
||||
'submit #send' : 'submit_send'
|
||||
},
|
||||
show_send: function(e) {
|
||||
$('#send').fadeIn().find('input[type=text]').focus();
|
||||
},
|
||||
focus_send: function(e) {
|
||||
$('#send input[type=text]').focus();
|
||||
},
|
||||
hide_send: function(e) {
|
||||
$('#send').hide();
|
||||
e.preventDefault();
|
||||
},
|
||||
submit_send: function(e) {
|
||||
e.preventDefault();
|
||||
var numbers = [];
|
||||
var splitString = $("#send_numbers").val().split(",");
|
||||
for (var i = 0; i < splitString.length; i++) {
|
||||
try {
|
||||
numbers.push(textsecure.utils.verifyNumber(splitString[i], textsecure.storage.getUnencrypted("regionCode")));
|
||||
} catch (numberError) {
|
||||
if (!numberError.countryCodeValid) {
|
||||
Whisper.notify('Invalid country code');
|
||||
}
|
||||
if (!numberError.numberValid) {
|
||||
Whisper.notify('Invalid number');
|
||||
}
|
||||
$('#send input[type=text]').focus();
|
||||
return;
|
||||
}
|
||||
}
|
||||
$("#send_numbers").val('');
|
||||
$('#send').hide();
|
||||
Whisper.Threads.findOrCreateForRecipient(numbers).trigger('select');
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user