Skip to content

Instantly share code, notes, and snippets.

@slavikshen
Created November 17, 2015 20:32
Show Gist options
  • Save slavikshen/093254b532a95531a28b to your computer and use it in GitHub Desktop.
Save slavikshen/093254b532a95531a28b to your computer and use it in GitHub Desktop.
A faster alternative to forceUpdate.
var QuickUpdateMixin = {
getInitialState: function() {
return {
_updateTicker: 0
};
},
quickUpdate: function() {
this.setState({
_updateTicker: this.state._updateTicker++
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment