1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 05:35:55 +00:00

fix display of feed browser (probably closes #22)

This commit is contained in:
Andrew Dolgov
2005-12-30 05:22:07 +01:00
parent e3c99f3b63
commit b92e620990
3 changed files with 27 additions and 5 deletions

View File

@@ -625,6 +625,20 @@ function toggleSelectRowById(sender, id) {
}
}
function toggleSelectListRow(sender) {
var parent_row = sender.parentNode;
if (sender.checked) {
if (!parent_row.className.match("Selected")) {
parent_row.className = parent_row.className + "Selected";
}
} else {
if (parent_row.className.match("Selected")) {
parent_row.className = parent_row.className.replace("Selected", "");
}
}
}
function toggleSelectRow(sender) {
var parent_row = sender.parentNode.parentNode;