Remove code from loadList

We don't need this method so best to leave it empty.

Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
RMidhunSuresh 2021-07-24 13:42:57 +05:30 committed by Bruno Windels
parent c0f7f0a8f1
commit d4e923f9de

View file

@ -168,6 +168,8 @@ export class LazyListView extends ListView {
mount() {
const root = super.mount();
this._subscription = this._list.subscribe(this);
this._childInstances = [];
this._parent = el("div", {className: "LazyListParent"}, root);
/*
Hooking to scroll events can be expensive.
@ -181,17 +183,12 @@ export class LazyListView extends ListView {
update(attributes) {
this._renderRange = null;
super.update(attributes);
this._childInstances = [];
this._initialRender();
}
loadList() {
if (!this._list) { return; }
this._subscription = this._list.subscribe(this);
this._childInstances = [];
/*
super.loadList() would render the entire list at this point.
We instead lazy render a part of the list in _renderIfNeeded
*/
// We don't render the entire list; so nothing to see here.
}
_removeChild(child) {