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:
14
functions.js
14
functions.js
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user