summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-04-09 11:58:14 +0400
committerAndrew Dolgov <[email protected]>2012-04-09 11:58:14 +0400
commite2d1c16ed160909059d877b69aad8153f7196b6d (patch)
tree7cd4b70959da8657d50a14b749339f807ce2f832
parent6cb2269c034e2dbb5103d501adf3ab60329bb640 (diff)
disable catchup of visible headlines on viewfeed()
-rw-r--r--js/feedlist.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/feedlist.js b/js/feedlist.js
index 02057c06a..a2a24d0e0 100644
--- a/js/feedlist.js
+++ b/js/feedlist.js
@@ -71,7 +71,8 @@ function viewfeed(feed, method, is_cat, offset, background, infscroll_req) {
// switching to a different feed, we might as well catchup stuff visible
// in headlines buffer (if any)
- if (!background && isCdmMode() && getInitParam("cdm_auto_catchup") == 1 && parseInt(getActiveFeedId()) > 0) {
+ // disabled for now because this behavior is considered confusing -fox
+ /* if (!background && isCdmMode() && getInitParam("cdm_auto_catchup") == 1 && parseInt(getActiveFeedId()) > 0) {
$$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
function(child) {
@@ -97,7 +98,7 @@ function viewfeed(feed, method, is_cat, offset, background, infscroll_req) {
}
});
- }
+ } */
}
if (offset == 0 && !background)