diff options
author | alecpl <alec@alec.pl> | 2010-05-19 13:23:19 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-05-19 13:23:19 +0000 |
commit | 54531f1d7f66dcd8a596f5490003fd2f2044213c (patch) | |
tree | db0a4bc650602f233e2bdfd5faf902c762840e2d /program/js/app.js | |
parent | b00ba6e6de83aba46926b7595a41e51a34300fcc (diff) |
- small improvements
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index dfd7c9f87..5e081d9a3 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1969,8 +1969,8 @@ function rcube_webmail() this.init_threads = function(roots) { for (var n=0, len=roots.length; n<len; n++) - setTimeout(function() { rcmail.add_tree_icons(roots[n]);}, 1); - setTimeout(function() { rcmail.expand_threads();}, 1); + this.add_tree_icons(roots[n]); + this.expand_threads(); }; // adds threads tree icons to the list (or specified thread) |