({grid, scrollLeft = 0, scrollTop = 0})
| 37 | } |
| 38 | |
| 39 | function simulateScroll({grid, scrollLeft = 0, scrollTop = 0}) { |
| 40 | const target = {scrollLeft, scrollTop}; |
| 41 | grid._scrollingContainer = target; // HACK to work around _onScroll target check |
| 42 | Simulate.scroll(findDOMNode(grid), {target}); |
| 43 | } |
| 44 | |
| 45 | function getMarkup(props = {}) { |
| 46 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…