From 4ee4872b272c3daa03bad836cc01eb4a4ec4d182 Mon Sep 17 00:00:00 2001 From: lilia Date: Sun, 25 Jan 2015 15:51:22 -1000 Subject: [PATCH] Stop matching typeahead against group members It feels a little weird when you can't see the matching member. Would consider putting this back in if we display the member list in the contact list item view. --- 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 e87d7c0bdd..762f10e497 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', 'members'], + typeaheadAttributes: ['name'], database: Whisper.Database, storeName: 'conversations', model: Whisper.Conversation,