From 85285a1094c2279194108d6701c33df01a31dfeb Mon Sep 17 00:00:00 2001 From: lilia Date: Sat, 5 Dec 2015 18:46:32 -0800 Subject: [PATCH] Inline a one-line function only used in one place // FREEBIE --- js/views/inbox_view.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/js/views/inbox_view.js b/js/views/inbox_view.js index b50b097c3..83906355e 100644 --- a/js/views/inbox_view.js +++ b/js/views/inbox_view.js @@ -135,11 +135,8 @@ input.removeClass('active'); } }, - hideHints: function() { - this.searchView.hideHints(); - }, openConversation: function(e, conversation) { - this.hideHints(); + this.searchView.hideHints(); conversation = ConversationController.create(conversation); this.conversation_stack.open(conversation); this.hideCompose();