Skip to content

Instantly share code, notes, and snippets.

@imgsrc
Created August 21, 2017 13:47
Show Gist options
  • Save imgsrc/8ffaeb2bcbf4a86bdc3d7fb6bfd9c410 to your computer and use it in GitHub Desktop.
Save imgsrc/8ffaeb2bcbf4a86bdc3d7fb6bfd9c410 to your computer and use it in GitHub Desktop.
Функция проверка клика во вне компонента для закрытия
checkTargetClick( event ) {
if ( this.state.mode === 'click' &&
event.target !== this.tooltip &&
!this.tooltip.contains( event.target ) ) {
this.setState({ show: false });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment