Update compose typeahead after fetching

Fixes #322

// FREEBIE
This commit is contained in:
lilia 2015-08-05 10:54:47 -07:00
parent 001a91466b
commit 82431c3c12

View file

@ -28,7 +28,7 @@
storeName: 'conversations', storeName: 'conversations',
model: Whisper.Conversation, model: Whisper.Conversation,
fetchContacts: function() { fetchContacts: function() {
this.fetch({ conditions: { type: 'private' } }); return this.fetch({ reset: true, conditions: { type: 'private' } });
} }
}); });
@ -91,6 +91,7 @@
}) })
}); });
this.$('.contacts').append(this.typeahead_view.el); this.$('.contacts').append(this.typeahead_view.el);
this.listenTo(this.typeahead, 'reset', this.filterContacts);
this.initNewContact(); this.initNewContact();
}, },