fix(virtualScroll): fixes from rc1 breaking changes

This commit is contained in:
Adam Bradley
2016-05-13 22:58:50 -05:00
parent 4c19d15ee2
commit 158f7175d9
6 changed files with 9 additions and 11 deletions

View File

@ -485,7 +485,7 @@ export class VirtualScroll implements DoCheck, AfterContentInit, OnDestroy {
for (var i = 0; i < this._nodes.length; i++) {
node = this._nodes[i];
if (node.hasChanges) {
node.view['changeDetectorRef'].detectChanges();
node.view['detectChanges']();
node.hasChanges = false;
}
}