summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 () {