list perf: use documentFragment to add all rows to table in one operation
This commit is contained in:
parent
66d8951ad9
commit
043e7225fd
|
@ -410,10 +410,11 @@ export class ListView extends View {
|
|||
nodes = nodes.reverse();
|
||||
}
|
||||
|
||||
var fragment = document.createDocumentFragment();
|
||||
for (let i = 0; i < nodes.length; i += 1) {
|
||||
const row = this.renderRow(nodes[i]);
|
||||
|
||||
this.tbody.appendChild(row);
|
||||
}
|
||||
fragment.appendChild(row);
|
||||
}
|
||||
this.tbody.appendChild(fragment);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue