...
|
...
|
@@ -48,9 +48,9 @@ function request() { |
|
|
|
|
|
if (preferenceUrl) {
|
|
|
$.get(preferenceUrl).then(function(html) {
|
|
|
if (typeof html !== 'string') return;
|
|
|
if (typeof html !== 'string') { return; }
|
|
|
|
|
|
$recommendForYou.html(html).show();
|
|
|
$recommendForYou.html(html.replace(/https?:/gi, '')).show();
|
|
|
lazyLoad($recommendForYou.find('img.lazy'));
|
|
|
|
|
|
// 为你优选埋点- 加载
|
...
|
...
|
@@ -91,4 +91,4 @@ function scrollHandler() { |
|
|
|
|
|
$(window).scroll(function() {
|
|
|
window.requestAnimationFrame(scrollHandler);
|
|
|
}); |
|
|
\ No newline at end of file |
|
|
}); |
...
|
...
|
|