From a593cb62f35cd0cee13327cff483e4bab849fce3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 11 Nov 2011 15:35:29 +0400 Subject: catchupFeed: add confirmation prompt --- feedlist.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/feedlist.js b/feedlist.js index dacef5c22..833fe9e26 100644 --- a/feedlist.js +++ b/feedlist.js @@ -459,6 +459,14 @@ function getNextUnreadFeed(feed, is_cat) { function catchupFeed(feed, is_cat) { try { + var str = __("Mark all articles in %s as read?"); + var fn = getFeedName(getActiveFeedId(), activeFeedIsCat()); + + str = str.replace("%s", fn); + + if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) { + return; + } var catchup_query = "?op=rpc&subop=catchupFeed&feed_id=" + feed + "&is_cat=" + is_cat; -- cgit v1.2.3