aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-03-01 14:16:19 +0100
committerMario Vavti <mario@mariovavti.com>2019-03-01 14:16:19 +0100
commit2244bf2ba2e8611017de51fbeb3c449efef906f0 (patch)
tree2413c9f048ac539cc227ae1c903b1537227ea273 /view/js/main.js
parentde7f2eef47b06d2711473e50efd29ae12110e459 (diff)
downloadvolse-hubzilla-2244bf2ba2e8611017de51fbeb3c449efef906f0.tar.gz
volse-hubzilla-2244bf2ba2e8611017de51fbeb3c449efef906f0.tar.bz2
volse-hubzilla-2244bf2ba2e8611017de51fbeb3c449efef906f0.zip
iron out some kinks with scrollToItem() in combination with collapsed content and images
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js16
1 files changed, 11 insertions, 5 deletions
diff --git a/view/js/main.js b/view/js/main.js
index b1af29846..1322c2112 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -770,7 +770,7 @@ function updateConvItems(mode,data) {
mediaPlaying = false;
});
- var bimgs = ((preloadImages) ? false : $(".wall-item-body img, .wall-photo-item img").not(function() { return this.complete; }));
+ var bimgs = $(".wall-item-body img, .wall-photo-item img").not(function() { return this.complete; });
var bimgcount = bimgs.length;
if (bimgcount) {
@@ -778,16 +778,22 @@ function updateConvItems(mode,data) {
bimgcount--;
if (! bimgcount) {
collapseHeight();
+
+ if(bParam_mid && mode === 'replace')
+ scrollToItem();
+
+ $(document.body).trigger("sticky_kit:recalc");
}
});
} else {
collapseHeight();
- }
- if(bParam_mid && mode === 'replace')
- scrollToItem();
+ if(bParam_mid && mode === 'replace')
+ scrollToItem();
+
+ $(document.body).trigger("sticky_kit:recalc");
+ }
- $(document.body).trigger("sticky_kit:recalc");
}
function scrollToItem() {