From d3d84f3124ca16ba32d33dac39bafaaf68e0713a Mon Sep 17 00:00:00 2001 From: lilia Date: Sun, 25 Jan 2015 02:28:57 -1000 Subject: [PATCH] Let typeahead surface groups with matching members --- js/views/new_conversation_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/new_conversation_view.js b/js/views/new_conversation_view.js index 9c28cafa..0c81499a 100644 --- a/js/views/new_conversation_view.js +++ b/js/views/new_conversation_view.js @@ -19,7 +19,7 @@ var Whisper = Whisper || {}; 'use strict'; var typeahead = Backbone.TypeaheadCollection.extend({ - typeaheadAttributes: ['name'], + typeaheadAttributes: ['name', 'members'], database: Whisper.Database, storeName: 'conversations', model: Whisper.Conversation,