diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-11-27 18:07:42 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-11-27 18:10:13 +0100 |
commit | caffe4d317b22c61881e48aebe85a9e5b334affd (patch) | |
tree | aa621a990df2e2f6d05077a6d880156442773334 | |
parent | c516e3a701b73c67501d94902ecff40970a008db (diff) |
Fix deleting of collapsed threads, broken in 2b55d4f4204bdb8c97865e01b960c1d1f23ac0b7 (#1488772)
-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 8fe68bf9e..08411f0e2 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2541,7 +2541,7 @@ function rcube_webmail() for (i=0, len=selection.length; i<len; i++) { uid = selection[i]; if (list.rows[uid].has_children && !list.rows[uid].expanded) - list.select_childs(uid); + list.select_children(uid); } // if config is set to flag for deletion |