Authored by biao

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

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