diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2009-04-01 14:03:31 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2009-04-01 14:03:31 +0000 |
| commit | 550e8950ab021dbc7b52243a49628f8da511a124 (patch) | |
| tree | 2a5854c1dbde9b2d2585695a0a0bd7716d9fffe5 | |
| parent | b48f710e6957175c5eac1dfc26c494778d4d0c9f (diff) | |
Selection of message icon div was too greedy for use with CSS sprites and threading icons.
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index a64c98ff0..e6c7aebdb 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -388,7 +388,7 @@ function rcube_webmail() } // set eventhandler to message icon - if ((row.icon = row.obj.cells[0].childNodes[1]) && row.icon.nodeName=='DIV') + if (row.icon = row.obj.cells[0].getElementsByClassName('icon-holder')[0]) { var p = this; row.icon.id = 'msgicn_'+row.uid; |
