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

combined article display mode (option COMBINED_DISPLAY_MODE), remove xml feed output

This commit is contained in:
Andrew Dolgov
2005-12-13 06:52:32 +01:00
parent 6a1ad08406
commit 386cbf27aa
9 changed files with 245 additions and 81 deletions

View File

@@ -537,6 +537,21 @@ function getSelectedTableRowIds(content_id, prefix) {
}
function toggleSelectRowById(sender, id) {
var row = document.getElementById(id);
if (sender.checked) {
if (!row.className.match("Selected")) {
row.className = row.className + "Selected";
}
} else {
if (row.className.match("Selected")) {
row.className = row.className.replace("Selected", "");
}
}
}
function toggleSelectRow(sender) {
var parent_row = sender.parentNode.parentNode;