|
|
/**
|
|
|
* 共用底部<解决某些页面过短导致底部悬空的问题>
|
|
|
* @author: xuqi<qi.xu@yoho.cn
|
|
|
* @date: 2015/10/19
|
|
|
*/
|
|
|
var $ = require('yoho.zepto');
|
|
|
|
|
|
var $footer = $('#yoho-footer');
|
|
|
|
|
|
if ($('body').height() < $(window).height()) {
|
|
|
$footer.addClass('bottom');
|
|
|
}
|
|
|
|
|
|
$footer.removeClass('hide'); |
|
|
\ No newline at end of file |
...
|
...
|
|