mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
comment for PAGE_SIZE
This commit is contained in:
parent
86c13b97ce
commit
fee8d79267
1 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,10 @@ const UNPAGINATION_PADDING = 6000;
|
||||||
// The number of milliseconds to debounce calls to onUnfillRequest, to prevent
|
// The number of milliseconds to debounce calls to onUnfillRequest, to prevent
|
||||||
// many scroll events causing many unfilling requests.
|
// many scroll events causing many unfilling requests.
|
||||||
const UNFILL_REQUEST_DEBOUNCE_MS = 200;
|
const UNFILL_REQUEST_DEBOUNCE_MS = 200;
|
||||||
|
// _updateHeight makes the height a ceiled multiple of this so we
|
||||||
|
// don't have to update the height too often. It also allows the user
|
||||||
|
// to scroll past the pagination spinner a bit so they don't feel blocked so
|
||||||
|
// much while the content loads.
|
||||||
const PAGE_SIZE = 400;
|
const PAGE_SIZE = 400;
|
||||||
|
|
||||||
let debuglog;
|
let debuglog;
|
||||||
|
|
Loading…
Reference in a new issue