Revert "fix clamping for infinite scrolling (refs #479)"
This reverts commit 8c5c4e494d
.
This commit is contained in:
parent
871f0a7ac6
commit
ab29de3251
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue