summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-04-18 07:27:49 +0100
committerAndrew Dolgov <[email protected]>2008-04-18 07:27:49 +0100
commitf8232151a0a4bdd430e928d742686a2330e99d68 (patch)
tree256f0019972ed404d9212f1f8072f4edc77fc244 /tt-rss.js
parent06925d9e8502e544a98b7b2dacf618be9e34f25f (diff)
add hotkey to catchup all feeds, add optional warning to catchupAllFeeds()
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js22
1 files changed, 13 insertions, 9 deletions
diff --git a/tt-rss.js b/tt-rss.js
index b7a6fca18..e165ec1c7 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -219,20 +219,24 @@ function updateFeedList(silent, fetch) {
function catchupAllFeeds() {
- var query_str = "backend.php?op=feeds&subop=catchupAll";
+ var str = __("Mark all articles as read?");
- notify_progress("Marking all feeds as read...");
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
- debug("catchupAllFeeds Q=" + query_str);
+ var query_str = "backend.php?op=feeds&subop=catchupAll";
- new Ajax.Request(query_str, {
- onComplete: function(transport) {
- feedlist_callback2(transport);
- } });
+ notify_progress("Marking all feeds as read...");
- global_unread = 0;
- updateTitle("");
+ debug("catchupAllFeeds Q=" + query_str);
+ new Ajax.Request(query_str, {
+ onComplete: function(transport) {
+ feedlist_callback2(transport);
+ } });
+
+ global_unread = 0;
+ updateTitle("");
+ }
}
function viewCurrentFeed(subop) {