Home | History | Annotate | Download | only in resources

Lines Matching refs:remainingOffset

2439     var remainingOffset = scrollOffset;
2450 if (remainingOffset <= (row - lastAnimatingRow) * YearListCell.Height) {
2451 return lastAnimatingRow + Math.floor(remainingOffset / YearListCell.Height);
2453 remainingOffset -= (row - lastAnimatingRow) * YearListCell.Height;
2454 if (remainingOffset <= (rowHeight - YearListCell.Height))
2456 remainingOffset -= rowHeight - YearListCell.Height;
2459 return lastAnimatingRow + Math.floor(remainingOffset / YearListCell.Height);