diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-12 14:04:04 -0200 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-12 14:08:27 -0200 |
commit | 4e43fa4e81aeb9a66c150d1dbf1c21b13dbce66e (patch) | |
tree | fde434601751d97d16cc8481d7d09bf9f439f207 /web-ui/app/js/mail_view/ui | |
parent | c89983e82f69e915e6a62dab0b4610c789a9914c (diff) |
#220 fixing issue were we couldnt delete a tag that was highlighted
Diffstat (limited to 'web-ui/app/js/mail_view/ui')
-rw-r--r-- | web-ui/app/js/mail_view/ui/mail_view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/mail_view/ui/mail_view.js b/web-ui/app/js/mail_view/ui/mail_view.js index e4e2174a..4faba468 100644 --- a/web-ui/app/js/mail_view/ui/mail_view.js +++ b/web-ui/app/js/mail_view/ui/mail_view.js @@ -84,7 +84,7 @@ define( this.attachTagCompletion(this.attr.mail); this.select('tags').on('click', function (event) { - this.removeTag($(event.target).data('tag')); + this.removeTag($(event.target).text()); }.bind(this)); this.addTagLoseFocus(); |