summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-15 11:18:01 +0100
committerAndrew Dolgov <[email protected]>2005-11-15 11:18:01 +0100
commit7a991cac30acd4cbf4cca474765250b186d5fde7 (patch)
treeef5d7f9c7455ffcef9ba310d2cea63d4c6ecf2e5 /tt-rss.js
parent3745788e891932ba47ea4efe8d448e9f8d9ca359 (diff)
option DISPLAY_FEEDLIST_ACTIONS, consolidate actions in one dropbox
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 0fb61a117..1e8b2454c 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -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() {