diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-09-16 21:08:51 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-09-16 21:10:26 +0200 |
commit | 1cb23c936832c4e524872ff73f593e58a2f90d9b (patch) | |
tree | d4c602e15ff51699947e8efa9512d8f90b516e7e /program/js | |
parent | 848e204ef9bdaf989e7e48025d4ea6ee21e7678e (diff) |
Access list body through abstract property
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 3ace0b0b0..2018cfbc4 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2482,7 +2482,7 @@ function rcube_webmail() // expand all threads with unread children this.expand_unread = function() { - var r, tbody = this.gui_objects.messagelist.tBodies[0], + var r, tbody = this.message_list.tbody, new_row = tbody.firstChild; while (new_row) { |