Skip to content

Instantly share code, notes, and snippets.

@dbilgili
Created December 12, 2018 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbilgili/428b43f60daf167e65ff3e1396c29d5b to your computer and use it in GitHub Desktop.
Save dbilgili/428b43f60daf167e65ff3e1396c29d5b to your computer and use it in GitHub Desktop.
// vim: syntax=JSX
componentDidUpdate(){
if(this.state.isOpen){
window.addEventListener('click', this.close)
}
else{
window.removeEventListener('click', this.close)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment