diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-10-11 22:58:59 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-10-11 22:58:59 +0200 |
commit | dec37b3dbe07d373d6bfaeb630bafb755371aace (patch) | |
tree | 76a5695515864852526b19f6fb163c014bb6275d /view/js | |
parent | 9431112f777620ad2a17d674a06b12e647feaec6 (diff) | |
download | volse-hubzilla-dec37b3dbe07d373d6bfaeb630bafb755371aace.tar.gz volse-hubzilla-dec37b3dbe07d373d6bfaeb630bafb755371aace.tar.bz2 volse-hubzilla-dec37b3dbe07d373d6bfaeb630bafb755371aace.zip |
another collapseHeight() fix
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index 34d6bf475..14d9dcd2f 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -616,7 +616,7 @@ function updateConvItems(mode,data) { function collapseHeight() { $(".wall-item-content, .directory-collapse").each(function() { - var orgHeight = $(this).height(); + var orgHeight = $(this).outerHeight(true); if(orgHeight > divmore_height + 10) { if(! $(this).hasClass('divmore')) { $(this).readmore({ |