diff options
author | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-10-28 18:08:24 -0200 |
---|---|---|
committer | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-10-28 18:08:24 -0200 |
commit | caa9d036139af2964ee48edf8673e08e9ba93702 (patch) | |
tree | 5d7f2cba94f1be37dc1d27385c0394bd9293309a | |
parent | 553e6bf24af7ea3379c7ee778129db05204a2e40 (diff) |
Issue #493 - Fixed bug delete recipient event
Fixed bug that was shown error on console when trigger the delete
recipient event
-rw-r--r-- | web-ui/app/js/mail_view/ui/recipients/recipient.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/mail_view/ui/recipients/recipient.js b/web-ui/app/js/mail_view/ui/recipients/recipient.js index 66577f51..4e07732d 100644 --- a/web-ui/app/js/mail_view/ui/recipients/recipient.js +++ b/web-ui/app/js/mail_view/ui/recipients/recipient.js @@ -40,7 +40,7 @@ define( this.recipientDelActions = function () { this.on(this.$node.find('.recipient-del'), 'click', function (event) { this.doSelect(); - this.trigger(events.ui.recipients.deleteRecipient, {recipientsName : this.attr.address}); + this.trigger(events.ui.recipients.deleteRecipient, this); event.preventDefault(); }); |