Skip to content

Instantly share code, notes, and snippets.

@chrislaughlin
Created August 1, 2018 11:36
Show Gist options
  • Save chrislaughlin/8efc46b9020ff63e9c26c93ebbb619e1 to your computer and use it in GitHub Desktop.
Save chrislaughlin/8efc46b9020ff63e9c26c93ebbb619e1 to your computer and use it in GitHub Desktop.
Allow text selection
<div
onClick={event => {
if (document.getSelection() === '') {
event.stopPropigation();
}
}
>
text
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment