Authored by biao

update for make the recommend-for-you be sent after scroll. code review by LZF

... ... @@ -49,8 +49,12 @@ function request() {
}
}
$(window).scroll(function() {
function scrollHandler() {
if (!end || $(window).scrollTop() + winH >= $(document).height() - 50) {
request();
}
}
$(window).scroll(function() {
window.requestAnimationFrame(scrollHandler);
});
... ...