summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2006-01-31 03:06:13 +0000
committersvncommit <devs@roundcube.net>2006-01-31 03:06:13 +0000
commit2a1e18e50fb2fdd238fe751a86d79dd790e86483 (patch)
tree9aa51a7d7c868587f9a3159161d385e6fd0423d8 /program/js/app.js
parent5e35126796f14e0910a007972779d96fd49e1789 (diff)
fixed select-all bug
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js
index e0e31ed09..c216a73f4 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -449,7 +449,7 @@ function rcube_webmail()
this.list_rows = this.contact_rows;
if (this.env.cid)
- this.select(this.env.cid);
+ this.highlight_row(this.env.cid);
};
@@ -513,7 +513,7 @@ function rcube_webmail()
this.list_rows = this.identity_rows;
if (this.env.iid)
- this.select(this.env.iid);
+ this.highlight_row(this.env.iid);
};
@@ -1300,7 +1300,7 @@ function rcube_webmail()
for (var n in this.list_rows)
if (!filter || this.list_rows[n][filter]==true)
- this.select(n, true);
+ this.highlight_row(n, true);
};