代码条件语句优化。 code review by LZF
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -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 |
-
Please register or login to post a comment