Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Libraries/CustomComponents/ListView/ListView.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,23 @@ var ListView = React.createClass({
};
},

getInnerViewNode: function() {
return this.refs[SCROLLVIEW_REF].getInnerViewNode();
},

scrollTo: function(destY, destX) {
this.refs[SCROLLVIEW_REF].scrollTo(destY, destX);
},

scrollWithoutAnimationTo: function(destY, destX) {
this.refs[SCROLLVIEW_REF].scrollWithoutAnimationTo(destY, destX);
},

/**
* Provides a handle to the underlying scroll responder to support operations
* such as scrollTo.
*
* Deprecated: instead call scrollTo, etc. directly on this component
*/
getScrollResponder: function() {
return this.refs[SCROLLVIEW_REF];
Expand Down