summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/recipients/recipient.js
diff options
context:
space:
mode:
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.js4
1 files changed, 2 insertions, 2 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 327f40bb..004b9247 100644
--- a/web-ui/app/js/mail_view/ui/recipients/recipient.js
+++ b/web-ui/app/js/mail_view/ui/recipients/recipient.js
@@ -40,11 +40,11 @@ define(
this.teardown();
};
- this.select = function () {
+ this.doSelect = function () {
this.$node.find('.recipient-value').addClass('selected');
};
- this.unselect = function () {
+ this.doUnselect = function () {
this.$node.find('.recipient-value').removeClass('selected');
};
}