mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Show all contacts all the time
Contacts without conversation identity appear in alphabetical order at the end of the inbox. // FREEBIE
This commit is contained in:
@@ -14,7 +14,8 @@
|
||||
if (conversation.get('active_at')) {
|
||||
$el.prependTo(this.el);
|
||||
} else {
|
||||
$el.remove();
|
||||
var index = getInboxCollection().indexOf(conversation);
|
||||
$el.insertBefore(this.$('.conversation-list-item')[index+1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -95,16 +95,6 @@
|
||||
this.listenTo(this.searchView, 'open',
|
||||
this.openConversation.bind(this, null));
|
||||
|
||||
if (inboxCollection.length === 0) {
|
||||
this.searchView.showAllContacts = true;
|
||||
this.searchView.reset();
|
||||
this.listenToOnce(inboxCollection, 'add', function(model) {
|
||||
this.searchView.showAllContacts = false;
|
||||
this.searchView.reset();
|
||||
model.trigger('opened');
|
||||
}.bind(this));
|
||||
}
|
||||
|
||||
new SocketView().render().$el.appendTo(this.$('.socket-status'));
|
||||
|
||||
extension.windows.onClosed(function() {
|
||||
|
||||
Reference in New Issue
Block a user