1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 09:25:57 +00:00

vfeed grouping: allow per-feed catchup

This commit is contained in:
Andrew Dolgov
2008-05-17 05:26:56 +01:00
parent f52fb64d8c
commit a9bcfb8ff8
2 changed files with 23 additions and 3 deletions

View File

@@ -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 {