[fix] stop propagation of ScrollView 'onScroll' event

Fix #440
This commit is contained in:
Nicolas Gallagher
2017-04-29 12:15:19 -07:00
parent 1cae5d55a1
commit 21550db5f2
@@ -87,6 +87,7 @@ export default class ScrollViewBase extends Component {
_handleScroll = e => {
e.persist();
e.stopPropagation();
const { scrollEventThrottle } = this.props;
// A scroll happened, so the scroll bumps the debounce.
this._debouncedOnScrollEnd(e);