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

option DISPLAY_FEEDLIST_ACTIONS, consolidate actions in one dropbox

This commit is contained in:
Andrew Dolgov
2005-11-15 11:18:01 +01:00
parent 3745788e89
commit 7a991cac30
3 changed files with 33 additions and 3 deletions

View File

@@ -467,6 +467,22 @@ function quickMenuGo() {
displayDlg("quickDelFeed", actid);
return;
}
if (opname.match("Update")) {
scheduleFeedUpdate(true);
return;
}
if (opname.match("Mark as read")) {
catchupAllFeeds();
return;
}
if (opname.match("Toggle display read")) {
toggleDispRead();
return;
}
}
function qafAdd() {