From e6e84e90792422da321809440fec0a9d97bb76cc Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Tue, 16 Jan 2018 09:10:24 -0800 Subject: [PATCH] tweak virtual list --- routes/_utils/virtualListStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/_utils/virtualListStore.js b/routes/_utils/virtualListStore.js index d88dc86..41ef947 100644 --- a/routes/_utils/virtualListStore.js +++ b/routes/_utils/virtualListStore.js @@ -12,7 +12,7 @@ const virtualListStore = new VirtualListStore({ virtualListStore.compute('visibleItems', ['items', 'scrollTop', 'height', 'itemHeights', 'innerHeight'], (items, scrollTop, height, itemHeights, innerHeight) => { - let renderBuffer = 2 * innerHeight + let renderBuffer = 1.5 * innerHeight let visibleItems = [] let totalOffset = 0 let len = items.length