Dyad 2: Fix fade over short posts on blog page

This commit is contained in:
Allan Cole 2019-02-08 17:22:38 -05:00
parent 35ebade4a3
commit b457a0f8df

View file

@ -95,7 +95,7 @@
$contentHeight = $content.innerHeight(),
$wholeContentHeight = $headerHeight + $contentHeight;
if ( ( $innerContainHeight - $linkMoreHeight ) <= $wholeContentHeight ) {
if ( ( $innerContainHeight - $linkMoreHeight ) < $wholeContentHeight ) {
$contain.parent().addClass('too-short');
} else {
$contain.parent().removeClass('too-short');