diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-07-09 23:41:40 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-07-09 23:41:40 +0200 |
commit | 73ad4f1bfdf104055104907c11f97315d6fb2ebe (patch) | |
tree | a8c0702d35944d4fa970b11817a7cd0e45932558 /program/js/app.js | |
parent | 95a18fa549c9576b7035d27ef1712c5dfd01422d (diff) |
Finally: make message list header stay on top when scrolling (#1295420)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 04fb9cdb4..45a17d640 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6437,6 +6437,7 @@ function rcube_webmail() if ((response.action == 'list' || response.action == 'search') && this.message_list) { this.msglist_select(this.message_list); + this.message_list.resize(); this.triggerEvent('listupdate', { folder:this.env.mailbox, rowcount:this.message_list.rowcount }); } } @@ -6447,6 +6448,7 @@ function rcube_webmail() this.enable_command('search-create', this.env.source == ''); this.enable_command('search-delete', this.env.search_id); this.update_group_commands(); + this.contact_list.resize(); this.triggerEvent('listupdate', { folder:this.env.source, rowcount:this.contact_list.rowcount }); } } |