summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJefferson Stachelski <jstachel@thoughtworks.com>2015-10-28 18:12:23 -0200
committerJefferson Stachelski <jstachel@thoughtworks.com>2015-10-28 18:12:23 -0200
commiteb3b4bbbd3c5e3c842f9d12622bb25b45b97b38c (patch)
tree4a28042c55eee9e89feb4a71004e4fb7f022347e
parentcaa9d036139af2964ee48edf8673e08e9ba93702 (diff)
Issue #493 - Fixed jshint
-rw-r--r--web-ui/app/js/mail_view/ui/recipients/recipient.js2
-rw-r--r--web-ui/app/js/mail_view/ui/recipients/recipients.js4
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,