From 8c5c4e494d92772533b2d56cbd426a01ccc24da1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 9 Aug 2012 13:15:14 +0400 Subject: fix clamping for infinite scrolling (refs #479) --- js/viewfeed.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/viewfeed.js b/js/viewfeed.js index 2e8301640..49eac8750 100644 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -116,6 +116,7 @@ function headlines_callback2(transport, offset, background, infscroll_req) { $$("#headlines-tmp > div").each(function(row) { if ($$("#headlines-frame DIV[id="+row.id+"]").length == 0) { row.style.display = 'none'; + c.domNode.appendChild(row); } else { row.parentNode.removeChild(row); @@ -141,10 +142,10 @@ function headlines_callback2(transport, offset, background, infscroll_req) { $$("#headlines-frame > div[id*=RROW]").each( function(child) { if (!Element.visible(child)) { - new Effect.Appear(child, { duration : 0.5 }); + //new Effect.Appear(child, { duration : 0.5 }); + Element.show(child); cp = child.getElementsByClassName("contentPreview")[0]; - clamp_element(cp, 50); } }); -- cgit v1.2.3