Showing
2 changed files
with
3 additions
and
1 deletions
@@ -99,7 +99,7 @@ function rePosFooter() { | @@ -99,7 +99,7 @@ function rePosFooter() { | ||
99 | return; | 99 | return; |
100 | } | 100 | } |
101 | 101 | ||
102 | - if ($('body').height() <= $(window).height()) { | 102 | + if ($('body').height() <= $(window).height() - 122) { |
103 | $footer.addClass('bottom'); | 103 | $footer.addClass('bottom'); |
104 | } else { | 104 | } else { |
105 | $footer.removeClass('bottom'); | 105 | $footer.removeClass('bottom'); |
@@ -26,6 +26,8 @@ var $action = $('.action'), | @@ -26,6 +26,8 @@ var $action = $('.action'), | ||
26 | // 清除原有链接 | 26 | // 清除原有链接 |
27 | $backBtn.attr('href', 'javascript:void(0);'); | 27 | $backBtn.attr('href', 'javascript:void(0);'); |
28 | 28 | ||
29 | +window.rePosFooter(); | ||
30 | + | ||
29 | // 自定义事件 | 31 | // 自定义事件 |
30 | $backBtn.on('touchend', function(e) { | 32 | $backBtn.on('touchend', function(e) { |
31 | if (currentPage === 'edit') { | 33 | if (currentPage === 'edit') { |
-
Please register or login to post a comment