summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-07-20 21:03:29 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-07-20 21:03:29 +0000
commit4f2018cb38c5a3cdbcf4e5770cfab0226a12462c (patch)
treea51ab9fe3bdface6f53c50e370d45f03d08c69a0 /roundcubemail/program/js/app.js
parent84e1e4e665fa3f83f714ffe1ec0da64f99759d94 (diff)
Fixed bug #1483897
git-svn-id: https://svn.roundcube.net/trunk@279 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index c60f62f29..b5388b2d1 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -1450,11 +1450,15 @@ function rcube_webmail()
// reset selection first
this.clear_selection();
- for (var n in this.list_rows) {
+ for (var n in this.list_rows)
+ {
if (!filter || this.list_rows[n][filter]==true)
+ {
this.last_selected = n;
this.highlight_row(n, true);
- }
+ }
+ }
+
return true;
};