diff options
author | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-03-04 17:35:46 -0300 |
---|---|---|
committer | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-03-04 17:37:05 -0300 |
commit | fab8a5cb9864fe939e687966fd9a5f5f29102bdc (patch) | |
tree | a6ae5ac8373ac8726fb9a2dec1695d8df62a47c3 /web-ui/app/js/mail_list/ui | |
parent | ef5f377db8a748262d8951311774318e23e2b419 (diff) |
#300 Removed the scroll reset whe update the mail list, and just run scroll reset when user change the tags
Diffstat (limited to 'web-ui/app/js/mail_list/ui')
-rw-r--r-- | web-ui/app/js/mail_list/ui/mail_list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/mail_list/ui/mail_list.js b/web-ui/app/js/mail_list/ui/mail_list.js index 69327a57..18d36049 100644 --- a/web-ui/app/js/mail_list/ui/mail_list.js +++ b/web-ui/app/js/mail_list/ui/mail_list.js @@ -93,7 +93,6 @@ define( this.showMails = function (event, data) { this.updateCurrentTagAndMail(data); this.refreshMailList(null, data); - this.triggerScrollReset(); this.triggerMailOpenForPopState(data); this.openMailFromUrl(); }; @@ -114,6 +113,7 @@ define( this.cleanSelected = function () { this.attr.currentMailIdent = ''; + this.triggerScrollReset(); }; this.respondWithCheckedMails = function (ev, caller) { |