- Fixed issue that would occur if the list started out being empty
- Fixed issue with clearing large list of items
- Added check to only regenerate DOM elements if items in the list have changed or a scroll event has fired. This greatly improves performance in some cases.
- Added this change log
- Fixed bug that occurred when the container element is not a direct parent of the element with
lazyFor
on it
- Fixed issue with uninitialized lists
- Added local variable named index that can be used to determine the index of the current item. e.g.:
<li *lazyFor="let item of items; let i = index;">
{{items}} {{i}}
</li>
- Initial release
- Added all the things