// Reset the scroll position when a new child comes in in order not to
// jerk the scrollbar around if you're already scrolled down the page.
if (React.Children.count(prevProps.children)<React.Children.count(this.props.children)&&this._oldScrollPosition&&this.node.scrollTop>0){
if (React.Children.count(prevProps.children)<React.Children.count(this.props.children)&&this._oldScrollPosition&&(this.node.scrollTop>0||this._recentlyMoved())){
if (this.getFirstChildKey(prevProps)!==this.getFirstChildKey(this.props)){