diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/misc-templates.js | 2 | ||||
-rw-r--r-- | src/page/homepage.js | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/misc-templates.js b/src/misc-templates.js index 71c62883..f27074b5 100644 --- a/src/misc-templates.js +++ b/src/misc-templates.js @@ -689,7 +689,7 @@ function unbound_getCarouselHTML({ img, items, - lazy = true, + lazy = false, altFn = () => '', linkFn = (x, {text}) => text, diff --git a/src/page/homepage.js b/src/page/homepage.js index 67b2c649..d34f117b 100644 --- a/src/page/homepage.js +++ b/src/page/homepage.js @@ -117,7 +117,8 @@ export function writeTargetless({wikiData}) { entry.displayStyle === 'carousel' && [ getCarouselHTML({ items: entry.entries.map(e => e.item), - lazy: i > 0, + // Lazy carousels are kinda glitchy, possibly browser-dependant + // lazy: i > 0, srcFn: getAlbumCover, linkFn: link.album, }), |