Created
August 1, 2018 11:36
-
-
Save chrislaughlin/8efc46b9020ff63e9c26c93ebbb619e1 to your computer and use it in GitHub Desktop.
Allow text selection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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