summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-17 05:26:56 +0100
committerAndrew Dolgov <[email protected]>2008-05-17 05:26:56 +0100
commita9bcfb8ff84cbaa87bf18607ced4763f0d92a192 (patch)
treeaf64bd68ee1199d1703668c4c9fc1655a1c8ffcd /tt-rss.js
parentf52fb64d8cde75ac94a07266cc4515d5ed07ccc4 (diff)
vfeed grouping: allow per-feed catchup
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 4fe948179..f6d603275 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -648,6 +648,15 @@ function catchupCurrentFeed() {
}
}
+function catchupFeedInGroup(id, title) {
+
+ var str = __("Mark all articles in %s as read?").replace("%s", title);
+
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
+ return viewCurrentFeed('MarkAllReadGR:' + id)
+ }
+}
+
function editFeedDlg(feed) {
try {