summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/recipients/recipients.js
diff options
context:
space:
mode:
authorJefferson Stachelski <jstachel@thoughtworks.com>2015-10-23 12:09:17 -0200
committerJefferson Stachelski <jstachel@thoughtworks.com>2015-10-23 12:09:17 -0200
commit066efbfb6a4938895348adf90e910f55c91f3260 (patch)
tree744b6040fb6b271d762a1567b40b8d3304b1b3a7 /web-ui/app/js/mail_view/ui/recipients/recipients.js
parent6d49949a73cf4757b4f616ee9398863d8ba62988 (diff)
Issue #493 - Its possible edit the recipients
Diffstat (limited to 'web-ui/app/js/mail_view/ui/recipients/recipients.js')
-rw-r--r--web-ui/app/js/mail_view/ui/recipients/recipients.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/web-ui/app/js/mail_view/ui/recipients/recipients.js b/web-ui/app/js/mail_view/ui/recipients/recipients.js
index d9a894a6..f5d51d31 100644
--- a/web-ui/app/js/mail_view/ui/recipients/recipients.js
+++ b/web-ui/app/js/mail_view/ui/recipients/recipients.js
@@ -46,9 +46,16 @@ define(
this.addressesUpdated();
}
+ function editCurrentRecipient() {
+ this.attr.iterator.editCurrent();
+ this.addressesUpdated();
+ }
+
var SPECIAL_KEYS_ACTIONS = {
8: deleteCurrentRecipient,
46: deleteCurrentRecipient,
+ 32: editCurrentRecipient,
+ 13: editCurrentRecipient,
37: moveLeft,
39: moveRight
};