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

split backend rpc, various interface improvements

This commit is contained in:
Andrew Dolgov
2006-03-29 04:11:48 +01:00
parent 9d87df8f60
commit 01b3e1919a
9 changed files with 278 additions and 345 deletions

View File

@@ -653,30 +653,6 @@ function qfdDelete(feed_id) {
}
function allFeedsMenuChange() {
var chooser = document.getElementById("allFeedsChooser");
var opname = chooser[chooser.selectedIndex].text;
chooser.selectedIndex = 0;
if (opname == "Update") {
scheduleFeedUpdate(true);
return;
}
if (opname == "Mark as read") {
catchupAllFeeds();
return;
}
if (opname == "Show only unread") {
toggleDispRead();
return;
}
}
function updateFeedTitle(t) {
active_title_text = t;
updateTitle();