Charles Pinnix
Results
2
comments of
Charles Pinnix
We're using VirtualScroll for large document images. One thing I'm looking for is the ability to know when scrolling has stopped to avoid loading large images in between a large...
@bvaughn Yeah. Right after posting I came up with a simple timeout solution. ``` const delay = 500; let timeout = null; ... _onScroll(data) { clearTimeout(timeout); timeout = setTimeout(() =>...