aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-03-06 11:52:07 +0100
committerMario Vavti <mario@mariovavti.com>2017-03-06 11:52:07 +0100
commit99e681c09faa245f9ac06a0a502c3c89a49490cb (patch)
treeaa402ef4efa1a03367d9cb7ce142ac5f50384218 /view/js
parent4f5e9d77b24be8adeefa7823f52a2277808ec11a (diff)
downloadvolse-hubzilla-99e681c09faa245f9ac06a0a502c3c89a49490cb.tar.gz
volse-hubzilla-99e681c09faa245f9ac06a0a502c3c89a49490cb.tar.bz2
volse-hubzilla-99e681c09faa245f9ac06a0a502c3c89a49490cb.zip
do not collapse long nsfw content
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 5de4aa9a2..db7ad110b 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -695,7 +695,7 @@ function collapseHeight() {
$(".wall-item-content, .directory-collapse").each(function() {
var orgHeight = $(this).outerHeight(true);
if(orgHeight > divmore_height) {
- if(! $(this).hasClass('divmore')) {
+ if(! $(this).hasClass('divmore') && $(this).has('div.no-collapse').length == 0) {
// check if we will collapse some content above the visible content and compensate the diff later
if($(this).offset().top + divmore_height - $(window).scrollTop() + cDiff - ($(".divgrow-showmore").outerHeight() * i) < 65) {