diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2008-05-17 05:26:56 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2008-05-17 05:26:56 +0100 |
| commit | a9bcfb8ff84cbaa87bf18607ced4763f0d92a192 (patch) | |
| tree | af64bd68ee1199d1703668c4c9fc1655a1c8ffcd /tt-rss.js | |
| parent | f52fb64d8cde75ac94a07266cc4515d5ed07ccc4 (diff) | |
vfeed grouping: allow per-feed catchup
Diffstat (limited to 'tt-rss.js')
| -rw-r--r-- | tt-rss.js | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 { |