diff options
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/js/mail_view/ui/recipients/recipient.js | 2 | ||||
-rw-r--r-- | web-ui/app/js/mail_view/ui/recipients/recipients.js | 4 |
2 files changed, 3 insertions, 3 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 4e07732d..abfbc8e4 100644 --- a/web-ui/app/js/mail_view/ui/recipients/recipient.js +++ b/web-ui/app/js/mail_view/ui/recipients/recipient.js @@ -95,7 +95,7 @@ define( this.triggerEditRecipient = function(event, element) { this.trigger(this.$node.closest('.recipients-area'), events.ui.recipients.clickToEdit, this); - } + }; this.after('initialize', function () { this.recipientDelActions(); 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 966f4ba8..3d756bd5 100644 --- a/web-ui/app/js/mail_view/ui/recipients/recipients.js +++ b/web-ui/app/js/mail_view/ui/recipients/recipients.js @@ -69,11 +69,11 @@ define( this.getRecipientPosition = function(recipient) { return recipient.$node.closest('.recipients-area').find('.fixed-recipient').index(recipient.$node); - } + }; this.unselectAllRecipients = function() { this.$node.find('.recipient-value.selected').removeClass('selected'); - } + }; var SPECIAL_KEYS_ACTIONS = { 8: deleteCurrentRecipient, |