summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-03-29 15:03:48 +0400
committerAndrew Dolgov <[email protected]>2012-03-29 15:03:48 +0400
commit442456184c23b8da36d6f9e0ac098d4a57c17659 (patch)
treee46a74b131cbcc5af6033ce770cc1088084827be /js/tt-rss.js
parentd4c64ecc77a46c174d64ba6173a92834bbc1f74f (diff)
simplify catching up of feeds, do not reload headlines buffer on catchup unless on_catchup_show_next_feed is enabled (closes #442)
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 5804ee501..ef5d72e5b 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -504,34 +504,6 @@ function parse_runtime_info(data) {
}
}
-function catchupCurrentFeed() {
-
- var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
-
- var str = __("Mark all articles in %s as read?").replace("%s", fn);
-
- if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
- return viewCurrentFeed('MarkAllRead');
- }
-}
-
-function catchupFeedInGroup(id) {
-
- try {
-
- var title = getFeedName(id);
-
- var str = __("Mark all articles in %s as read?").replace("%s", title);
-
- if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
- return viewCurrentFeed('MarkAllReadGR:' + id);
- }
-
- } catch (e) {
- exception_error("catchupFeedInGroup", e);
- }
-}
-
function collapse_feedlist() {
try {