remove show more/less animation on mobile

This commit is contained in:
Zach Prezkuta 2012-08-26 09:22:49 -06:00
parent 7c9c92e542
commit 0fe1727d74
2 changed files with 2 additions and 2 deletions

View File

@ -372,7 +372,7 @@
$j(".wall-item-body").each(function() { $j(".wall-item-body").each(function() {
if($j(this).height() > 310) { if($j(this).height() > 310) {
if(! $j(this).hasClass('divmore')) { if(! $j(this).hasClass('divmore')) {
$j(this).divgrow({ initialHeight: 300, showBrackets: false, speed: 300 }); $j(this).divgrow({ initialHeight: 300, showBrackets: false, speed: 0 });
$j(this).addClass('divmore'); $j(this).addClass('divmore');
} }
} }

File diff suppressed because one or more lines are too long