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