Dyad 2: Fix fade over short posts on blog page
This commit is contained in:
parent
35ebade4a3
commit
b457a0f8df
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue