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.js6
1 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 5b0535fb..487ca9a0 100644
--- a/web-ui/app/js/mail_view/ui/recipients/recipient.js
+++ b/web-ui/app/js/mail_view/ui/recipients/recipient.js
@@ -87,9 +87,9 @@ define(
this.editRecipient = function(evt) {
var mailAddr = this.$node.children('input[type=hidden]').val();
- // TODO: refator the code bellow
- $("#recipients-to-area").find("input.tt-input").val(mailAddr);
- $("#recipients-to-area").find("input.tt-input").focus();
+ // TODO: refactor the code bellow
+ $('#recipients-to-area').find('input.tt-input').val(mailAddr);
+ $('#recipients-to-area').find('input.tt-input').focus();
// this.triger(document, events.ui.recipients:inputFieldHasCharacters);
this.destroy();
};