Fix multiple from address in message detail
This commit is contained in:
parent
441167ab35
commit
dfe7813e7f
1 changed files with 9 additions and 1 deletions
|
@ -47,12 +47,20 @@
|
||||||
this.$el.show();
|
this.$el.show();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
contacts: function() {
|
||||||
|
if (this.model.isIncoming()) {
|
||||||
|
var number = this.model.get('source');
|
||||||
|
return [this.conversation.contactCollection.get(number)];
|
||||||
|
} else {
|
||||||
|
return this.conversation.contactCollection.models;
|
||||||
|
}
|
||||||
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
this.$el.html(Mustache.render(this.template, {
|
this.$el.html(Mustache.render(this.template, {
|
||||||
sent_at: moment(this.model.get('sent_at')).toString(),
|
sent_at: moment(this.model.get('sent_at')).toString(),
|
||||||
received_at: moment(this.model.get('received_at')).toString(),
|
received_at: moment(this.model.get('received_at')).toString(),
|
||||||
tofrom: this.model.isIncoming() ? 'From' : 'To',
|
tofrom: this.model.isIncoming() ? 'From' : 'To',
|
||||||
contacts: this.conversation.contactCollection.map(function(contact) {
|
contacts: this.contacts().map(function(contact) {
|
||||||
return {
|
return {
|
||||||
name : contact.getTitle(),
|
name : contact.getTitle(),
|
||||||
avatar : contact.get('avatar'),
|
avatar : contact.get('avatar'),
|
||||||
|
|
Loading…
Reference in a new issue