Guest User

Untitled

a guest
Feb 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public componentDidMount() {
  2. this.gridRootNode = ReactDOM.findDOMNode( this.refs.gridRoot );
  3.  
  4. this.throttled_updateDimensions = throttle( this.updateDimensions.bind( this ), 100 );
  5. window.addEventListener( 'resize', this.throttled_updateDimensions );
  6.  
  7. this.setState( {
  8. mounted: true
  9. } );
  10. }
Add Comment
Please, Sign In to add comment