From b6543beca2f0e5e353b497099e3fa6b29bf47233 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 30 Jan 2016 01:34:27 +0100 Subject: do not make a difference if there are images or not for now --- view/js/main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index a37c23cf0..16f6b9213 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -625,7 +625,7 @@ function updateConvItems(mode,data) { bimgs.load(function() { bimgcount--; if (! bimgcount) { - collapseHeight(true); + collapseHeight(); } }); } else { @@ -634,13 +634,13 @@ function updateConvItems(mode,data) { } -function collapseHeight(below=false) { +function collapseHeight() { var origContentHeight = parseInt($("#region_2").height()); $(".wall-item-content, .directory-collapse").each(function() { var orgHeight = parseInt($(this).height()); if(orgHeight > divmore_height) { if(! $(this).hasClass('divmore')) { - if((below=true) && ($(window).scrollTop() + ($(window).height() - divmore_height) < $(this).offset().top)) { + if($(window).scrollTop() + ($(window).height() - divmore_height) < $(this).offset().top) { $(this).readmore({ speed: 0, heightMargin: 50, -- cgit v1.2.3