summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index c25718a59..c452d0aa9 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -352,17 +352,23 @@ function cdmSelectArticles(mode) {
var child = container.childNodes[i];
if (child.id.match("RROW-")) {
-// var aid = child.id.replace("RROW-", "");
+ var aid = child.id.replace("RROW-", "");
+
+ var cb = document.getElementById("RCHK-" + aid);
+
if (mode == "all") {
if (!child.className.match("Selected")) {
child.className = child.className + "Selected";
+ cb.checked = true;
}
} else if (mode == "unread") {
if (child.className.match("Unread") && !child.className.match("Selected")) {
child.className = child.className + "Selected";
+ cb.checked = true;
}
} else {
child.className = child.className.replace("Selected", "");
+ cb.checked = false;
}
}
}