Simplify event arguments

// FREEBIE
This commit is contained in:
lilia 2015-09-21 10:21:33 -07:00
parent c8a76ab38e
commit 4a482243d0
5 changed files with 8 additions and 9 deletions

View file

@ -111,8 +111,7 @@
'click .show-new-conversation': 'showCompose',
'select .gutter .contact': 'openConversation'
},
openConversation: function(e, data) {
var conversation = data.conversation;
openConversation: function(e, conversation) {
this.conversation_stack.open(conversation);
this.hideCompose();
},