summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/recipients/recipient.js
diff options
context:
space:
mode:
authorJefferson Stachelski <jstachel@thoughtworks.com>2015-10-28 18:08:24 -0200
committerJefferson Stachelski <jstachel@thoughtworks.com>2015-10-28 18:08:24 -0200
commitcaa9d036139af2964ee48edf8673e08e9ba93702 (patch)
tree5d7f2cba94f1be37dc1d27385c0394bd9293309a /web-ui/app/js/mail_view/ui/recipients/recipient.js
parent553e6bf24af7ea3379c7ee778129db05204a2e40 (diff)
Issue #493 - Fixed bug delete recipient event
Fixed bug that was shown error on console when trigger the delete recipient event
Diffstat (limited to 'web-ui/app/js/mail_view/ui/recipients/recipient.js')
-rw-r--r--web-ui/app/js/mail_view/ui/recipients/recipient.js2
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();
});