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

@ -239,8 +239,6 @@ export function populateNodeData(startCellIndex: number, endCellIndex: number, v
// apply the cell's data to this node
availableNode.view.context.$implicit = cell.data || records[cell.record];
availableNode.view.context.index = cellIndex;
availableNode.view.context.even = (cellIndex % 2 === 0);
availableNode.view.context.odd = (cellIndex % 2 === 1);
availableNode.hasChanges = true;
availableNode.lastTransform = null;
madeChanges = true;