diff options
author | Anike Arni <aarni@thoughtworks.com> | 2016-12-13 17:52:07 -0200 |
---|---|---|
committer | Anike Arni <aarni@thoughtworks.com> | 2016-12-14 15:46:25 -0200 |
commit | b60c54f2b46e8b219963c2c0730e2095d7a69cb7 (patch) | |
tree | f9efe13b588f6a92155daf265a5442e3aa86f4b9 /web-ui/app | |
parent | 66a01bde2bd8c54fd830ff94443fc860a549bc3c (diff) |
[#845] Doesn't hide tag button when adding new tag
with @thaissiqueira
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/js/mail_view/ui/mail_view.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/web-ui/app/js/mail_view/ui/mail_view.js b/web-ui/app/js/mail_view/ui/mail_view.js index 3408c8af..4c9dce30 100644 --- a/web-ui/app/js/mail_view/ui/mail_view.js +++ b/web-ui/app/js/mail_view/ui/mail_view.js @@ -38,7 +38,6 @@ define( tags: '.mail-read-view__header-tags-tag', newTagInput: '#new-tag-input', newTagButton: '#new-tag-button', - addNew: '.mail-read-view__header-tags-new-button', trashButton: '#trash-button', archiveButton: '#archive-button', closeMailButton: '.close-mail-button' @@ -198,13 +197,11 @@ define( this.addTagLoseFocus = function () { this.select('newTagInput').hide(); this.select('newTagInput').typeahead('val', ''); - this.select('addNew').show(); }; this.showNewTagInput = function () { this.select('newTagInput').show(); this.select('newTagInput').focus(); - this.select('addNew').hide(); }; this.removeTag = function (tag) { |