From f6d6e22ff49d44986f2bbf0e82e0b56a4d7a04ff Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 28 Aug 2006 05:03:26 +0100 Subject: new option: CONFIRM_FEED_CATCHUP (closes #106) --- tt-rss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 771114d5b..597dd2fa4 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -571,7 +571,7 @@ function catchupCurrentFeed() { str = "Mark all articles in this category as read?"; } */ - if (confirm(str)) { + if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) { return viewCurrentFeed('MarkAllRead') } } -- cgit v1.2.3