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