From ab29de3251f4773c6c7e894ef16db16d8d5ae1e0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 10 Aug 2012 15:02:11 +0400 Subject: Revert "fix clamping for infinite scrolling (refs #479)" This reverts commit 8c5c4e494d92772533b2d56cbd426a01ccc24da1. --- js/viewfeed.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/js/viewfeed.js b/js/viewfeed.js index 49eac8750..2e8301640 100644 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -116,7 +116,6 @@ 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); @@ -142,10 +141,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 }); - Element.show(child); + new Effect.Appear(child, { duration : 0.5 }); cp = child.getElementsByClassName("contentPreview")[0]; + clamp_element(cp, 50); } }); -- cgit v1.2.3