summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/recipients/recipient.js
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2015-02-13 11:58:18 -0200
committerDuda Dornelles <ddornell@thoughtworks.com>2015-02-13 12:47:12 -0200
commitbc38ec9aa38acb9f0488228ed95f2b951e7a0917 (patch)
treef7ece31df42933a902d34fb9b2568399f73f13af /web-ui/app/js/mail_view/ui/recipients/recipient.js
parent9af1553353e8fb837e5c4323531dda8e69dc8915 (diff)
Fixing jshint
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.js5
1 files changed, 2 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 c14f36b2..603447d6 100644
--- a/web-ui/app/js/mail_view/ui/recipients/recipient.js
+++ b/web-ui/app/js/mail_view/ui/recipients/recipient.js
@@ -54,13 +54,12 @@ define(
var p = $.getJSON('/keys?search=' + this.attr.address).promise();
p.done(function () {
this.$node.addClass('encrypted');
- this.$node.removeClass('discorver-encryption')
+ this.$node.removeClass('discorver-encryption');
}.bind(this));
p.fail(function () {
this.$node.addClass('not-encrypted');
- this.$node.removeClass('discorver-encryption')
+ this.$node.removeClass('discorver-encryption');
}.bind(this));
-
};
this.after('initialize', function () {