summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-01-31 03:06:13 +0000
committercmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-01-31 03:06:13 +0000
commit70838d643af7b25c918595b96f48655b45694811 (patch)
treeeb22c2167fa5e87dffdf1b9a1e8a4f996646b23b
parente8c3613e4596ab2933966921236372b8cef5dae2 (diff)
fixed select-all bug
git-svn-id: https://svn.roundcube.net/trunk@128 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/js/app.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index e0e31ed09..c216a73f4 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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);
};