summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
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() {