fix(virtualScroll): load async data

Closes #6124
This commit is contained in:
Adam Bradley
2016-04-12 07:46:47 -05:00
parent e21c4d5927
commit 16a283efe7
2 changed files with 3 additions and 5 deletions

View File

@@ -11,10 +11,9 @@ class E2EPage {
@ViewChild('content') content: ElementRef;
constructor() {
for (var i = 0; i < 14; i++) {
for (var i = 0; i < 200; i++) {
this.items.push(i);
}
}
headerFn(record: any, index: number, records: any[]) {