Merge pull request #9487 from MrPetovan/bug/9432-network-infinite-load-ajax
Fix infinite content ajax call parameters
This commit is contained in:
commit
8fa62cbbbd
|
@ -893,16 +893,29 @@ function loadScrollContent() {
|
||||||
|
|
||||||
// get the raw content from the next page and insert this content
|
// get the raw content from the next page and insert this content
|
||||||
// right before "#conversation-end"
|
// right before "#conversation-end"
|
||||||
$.get(infinite_scroll.reload_uri + '&mode=raw&last_received=' + received + '&last_commented=' + commented + '&last_created=' + created + '&last_uriid=' + uriid, function(data) {
|
$.get({
|
||||||
|
url: infinite_scroll.reload_uri,
|
||||||
|
data: {
|
||||||
|
'mode' : 'raw',
|
||||||
|
'last_received' : received,
|
||||||
|
'last_commented': commented,
|
||||||
|
'last_created' : created,
|
||||||
|
'last_uriid' : uriid
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.done(function(data) {
|
||||||
$("#scroll-loader").hide();
|
$("#scroll-loader").hide();
|
||||||
if ($(data).length > 0) {
|
if ($(data).length > 0) {
|
||||||
$(data).insertBefore('#conversation-end');
|
$(data).insertBefore('#conversation-end');
|
||||||
lockLoadContent = false;
|
|
||||||
} else {
|
} else {
|
||||||
$("#scroll-end").fadeIn('normal');
|
$("#scroll-end").fadeIn('normal');
|
||||||
}
|
}
|
||||||
|
|
||||||
document.dispatchEvent(new Event('postprocess_liveupdate'));
|
document.dispatchEvent(new Event('postprocess_liveupdate'));
|
||||||
|
})
|
||||||
|
.always(function () {
|
||||||
|
$("#scroll-loader").hide();
|
||||||
|
lockLoadContent = false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue