-
First off, this package is awesome and saved us much time, we'll definitely donate something after we have our first profit with our project. Now to my question: In the prepending items example a start index of 10000 is set, we are currently doing the same as we don't know the total count of items for our use case, but on some of our pages we'll definitely have way more than 10000. Purely in terms of performance, should we just set a big enough start index or would it be better to build something around it which increases the index dynamically? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Any big number would work, really. The browsers (Chrome) a maximum limit of ~13M pixels for maximum element scroll height, so you should be safe. |
Beta Was this translation helpful? Give feedback.
Any big number would work, really. The browsers (Chrome) a maximum limit of ~13M pixels for maximum element scroll height, so you should be safe.