From a9bcfb8ff84cbaa87bf18607ced4763f0d92a192 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 17 May 2008 05:26:56 +0100 Subject: vfeed grouping: allow per-feed catchup --- tt-rss.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tt-rss.js') 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 { -- cgit v1.2.3