fix: race condition where `navigator.update` was called when it should not be

isekai-main
Julian Lam 2 years ago
parent 9f9a835fcb
commit fa643eb808

@ -581,9 +581,9 @@ define('navigator', ['forum/pagination', 'components', 'hooks', 'alerts'], funct
function animateScroll() {
function reenableScroll() {
// Re-enable onScroll behaviour
setTimeout(() => { // fixes race condition from jQuery — onAnimateComplete called too quickly
$(window).on('scroll', navigator.delayedUpdate);
const scrollToRect = scrollTo.get(0).getBoundingClientRect();
navigator.update(scrollToRect.top);
}, 50);
}
function onAnimateComplete() {
if (done) {

Loading…
Cancel
Save