summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-10 12:08:19 +0100
committerAndrew Dolgov <[email protected]>2006-03-10 12:08:19 +0100
commit720200957d8735a5281d7aafe5b04326bdb4619f (patch)
tree1cc4dede1ca14aa37a9908413dbd80cf8a934f61 /functions.js
parentbbdd7213dcee518e1a3ce895582ce20cb5bb23f3 (diff)
minor headlines select/deselect glitches fixes
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index db8f695ff..58ef1bfc7 100644
--- a/functions.js
+++ b/functions.js
@@ -184,7 +184,6 @@ function cleanSelected(element) {
for (i = 0; i < content.rows.length; i++) {
content.rows[i].className = content.rows[i].className.replace("Selected", "");
}
-
}
function getVisibleUnreadHeadlines() {
@@ -242,6 +241,12 @@ function markHeadline(id) {
row.className = row.className = "Active";
}
+ var check = document.getElementById("RCHK-" + id);
+
+ if (check) {
+ check.checked = true;
+ }
+
row.className = row.className + "Selected";
}