Authored by biao

代码条件语句优化。 code review by LZF

... ... @@ -126,7 +126,7 @@ module.exports = function(specificGender) {
//加载到数据后,去除bottom样式,使得footer能够随着页面长度的增加改变位置
if (data.length > 1) {
!$footer ? $footer = $('#yoho-footer') : null;
$footer ? null : $footer = $('#yoho-footer');
$footer.hasClass('bottom') ? $footer.removeClass('bottom') : null;
}
... ...