From 06a02265c47fc17bc45fe5222581873fc652ab61 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 25 Apr 2013 09:43:36 +0400 Subject: inject headlines-spacer even if cdm auto catchup is disabled --- js/viewfeed.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'js') diff --git a/js/viewfeed.js b/js/viewfeed.js index 14ef2f816..96919dc01 100644 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -43,9 +43,7 @@ function headlines_callback2(transport, offset, background, infscroll_req) { if (background) { var content = reply['headlines']['content']; - if (getInitParam("cdm_auto_catchup") == 1) { - content = content + "
"; - } + content = content + "
"; return; } @@ -93,11 +91,9 @@ function headlines_callback2(transport, offset, background, infscroll_req) { } }); - if (getInitParam("cdm_auto_catchup") == 1) { - var hsp = $("headlines-spacer"); - if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"}); - dijit.byId('headlines-frame').domNode.appendChild(hsp); - } + var hsp = $("headlines-spacer"); + if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"}); + dijit.byId('headlines-frame').domNode.appendChild(hsp); initHeadlinesMenu(); -- cgit v1.2.3