Код:
function load() {
if (loadPaused) {
jQuery.ajax({
dataType: "json",
url: chatx_server + 'load.php',
xhrFields: {
withCredentials: true
},
success: function(data) {
if (!secondLoad) {
appendComments(data);
scrollBottom();
} else {
var wrapper = document.querySelector(".simplebar-content-wrapper");
ul = jQuery('chx_ul.shoutbox-content');
if ((wrapper.scrollHeight - wrapper.scrollTop - 20) <= wrapper.clientHeight && mouseDown !== 1 && !document.querySelector(".shoutbox-comment-ago:hover")) {
if (ulHist.children.length > 0) {
ulHist.innerHTML = "";
document.querySelector('.chx-history chx_i').style.display = "block";
document.querySelector('.chx-history chx_div').style.display = "none";
}
appendComments(data);
scrollBottom();
}
}
secondLoad = true;
notification();
highlightMyMsg();
}
});
} else {
console.log('load paused')
}
}