1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 11:55:56 +00:00

add confirmation to Mark as read action (closes #96)

This commit is contained in:
Andrew Dolgov
2006-07-18 03:46:27 +01:00
parent fe6c1902f1
commit fce2483891
2 changed files with 10 additions and 1 deletions

View File

@@ -555,3 +555,12 @@ function parse_runtime_info(elem) {
param = param.nextSibling;
}
}
function catchupCurrentFeed() {
var fn = getFeedName(getActiveFeedId());
if (confirm("Mark all articles in " + fn + " as read?")) {
return viewCurrentFeed(0, 'MarkAllRead')
}
}