Browse Source

Dyad 2: Fix fade over short posts on blog page

Allan Cole 6 years ago
parent
commit
b457a0f8df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dyad-2/js/global.js

+ 1 - 1
dyad-2/js/global.js

@@ -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');