diff options
author | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-10-23 12:18:38 -0200 |
---|---|---|
committer | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-10-23 12:18:38 -0200 |
commit | f81e15f0925bcd5254736b16a490360beacc4a96 (patch) | |
tree | b2399328d061f559ca16c94e92d3eb0a89fd0710 /web-ui/app/js/mail_view/ui | |
parent | 066efbfb6a4938895348adf90e910f55c91f3260 (diff) |
Issue #493 - Fix jshint
Diffstat (limited to 'web-ui/app/js/mail_view/ui')
-rw-r--r-- | web-ui/app/js/mail_view/ui/recipients/recipient.js | 6 |
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(); }; |