Authored by 梁志锋

Merge branch 'fix/detail' into 'develop'

优化为你优选加载时机

See merge request !40
... ... @@ -43,6 +43,8 @@ function request() {
requesting = false;
end = true;
window.rePosFooter();
}).fail(function() {
$recommendForYou.hide();
});
... ... @@ -50,7 +52,7 @@ function request() {
}
function scrollHandler() {
if (!end || $(window).scrollTop() + winH >= $(document).height() - 50) {
if (!end || $(window).scrollTop() + winH >= $(document).height() - 200) {
request();
}
}
... ...