From 4a482243d0ea372b3d01f50679d11810882891f1 Mon Sep 17 00:00:00 2001 From: lilia Date: Mon, 21 Sep 2015 10:21:33 -0700 Subject: [PATCH] Simplify event arguments // FREEBIE --- js/index.js | 2 +- js/views/conversation_list_item_view.js | 2 +- js/views/inbox_view.js | 3 +-- js/views/new_conversation_view.js | 4 ++-- js/views/recipients_input_view.js | 6 +++--- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/js/index.js b/js/index.js index 738a177e2..371c69164 100644 --- a/js/index.js +++ b/js/index.js @@ -16,7 +16,7 @@ view.$el.prependTo(bg.$('body',document)); window.openConversation = function(conversation) { if (conversation) { - view.openConversation(null, {conversation: conversation}); + view.openConversation(null, conversation); } }; openConversation(bg.getOpenConversation()); diff --git a/js/views/conversation_list_item_view.js b/js/views/conversation_list_item_view.js index 426082860..faba8a8f4 100644 --- a/js/views/conversation_list_item_view.js +++ b/js/views/conversation_list_item_view.js @@ -25,7 +25,7 @@ select: function(e) { this.$el.addClass('selected').siblings('.selected').removeClass('selected'); - this.$el.trigger('select', {conversation: this.model}); + this.$el.trigger('select', this.model); }, render: function() { diff --git a/js/views/inbox_view.js b/js/views/inbox_view.js index 2b6739744..61d996203 100644 --- a/js/views/inbox_view.js +++ b/js/views/inbox_view.js @@ -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(); }, diff --git a/js/views/new_conversation_view.js b/js/views/new_conversation_view.js index 9cbfd0aa6..74eeb6bbf 100644 --- a/js/views/new_conversation_view.js +++ b/js/views/new_conversation_view.js @@ -84,7 +84,7 @@ var id = this.getRecipients().at(0).id; ConversationController.findOrCreatePrivateById(id).then(function(conversation) { conversation.save('active_at', Date.now()); - this.trigger('open', { conversation: conversation }); + this.trigger('open', conversation); }.bind(this)); } }, @@ -112,7 +112,7 @@ }; var group = ConversationController.create(attributes); group.save().then(function() { - this.trigger('open', { conversation: group }); + this.trigger('open', group); }.bind(this)); var now = Date.now(); var message = group.messageCollection.add({ diff --git a/js/views/recipients_input_view.js b/js/views/recipients_input_view.js index 10d0150ac..d42359723 100644 --- a/js/views/recipients_input_view.js +++ b/js/views/recipients_input_view.js @@ -136,14 +136,14 @@ }).render(); }, - addNewRecipient: function(e, data) { + addNewRecipient: function() { this.recipients.add(this.new_contact_view.model); this.initNewContact(); this.resetTypeahead(); }, - addRecipient: function(e, data) { - this.recipients.add(this.typeahead.remove(data.conversation.id)); + addRecipient: function(e, conversation) { + this.recipients.add(this.typeahead.remove(conversation.id)); this.resetTypeahead(); },