mirror of
https://github.com/Xevion/glance.git
synced 2026-01-31 08:24:25 -06:00
Revert setTimeout for images
Reduces instances of cached images fading in by giving the browser a bit more time to load them
This commit is contained in:
@@ -161,6 +161,7 @@ function setupLazyImages() {
|
||||
}
|
||||
|
||||
afterContentReady(() => {
|
||||
setTimeout(() => {
|
||||
for (let i = 0; i < images.length; i++) {
|
||||
const image = images[i];
|
||||
|
||||
@@ -175,6 +176,7 @@ function setupLazyImages() {
|
||||
});
|
||||
}
|
||||
}
|
||||
}, 1);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -347,11 +349,11 @@ async function setupPage() {
|
||||
pageContentElement.innerHTML = pageContent;
|
||||
|
||||
try {
|
||||
setupLazyImages();
|
||||
setupCarousels();
|
||||
setupCollapsibleLists();
|
||||
setupCollapsibleGrids();
|
||||
setupDynamicRelativeTime();
|
||||
setupLazyImages();
|
||||
} finally {
|
||||
pageElement.classList.add("content-ready");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user