react-bidirectional-infinite-scroll
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -54,3 +54,3 @@ 'use strict'; | ||
if (!!position && !prevProps.position) { | ||
if (!!position && position !== prevProps.position) { | ||
this.setScrollPosition(); | ||
@@ -57,0 +57,0 @@ } |
{ | ||
"name": "react-bidirectional-infinite-scroll", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Bidirectional infinite scroll written using react", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -24,3 +24,3 @@ import React, { PropTypes } from 'react'; | ||
if (!!position && !prevProps.position) { | ||
if (!!position && position !== prevProps.position) { | ||
this.setScrollPosition(); | ||
@@ -27,0 +27,0 @@ } |
225967