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

headlines subtoolbar, misc api changes

This commit is contained in:
Andrew Dolgov
2005-11-27 15:56:10 +01:00
parent 21cfcdf29b
commit 1572afe508
6 changed files with 287 additions and 45 deletions

View File

@@ -195,20 +195,6 @@ function updateUsersList() {
}
function toggleSelectRow(sender) {
var parent_row = sender.parentNode.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 addLabel() {
if (!xmlhttp_ready(xmlhttp)) {