list perf: use documentFragment to add all rows to table in one operation

This commit is contained in:
Oliver Gerlich 2018-07-16 22:26:40 +02:00
parent cbd87c85c8
commit 0309dbb00e
1 changed files with 3 additions and 2 deletions

View File

@ -430,10 +430,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);
}
}