Skip to content

Instantly share code, notes, and snippets.

@JustinDFuller
Last active January 16, 2017 02:16
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 JustinDFuller/70167eaf10104a2c12778bf77c446b6c to your computer and use it in GitHub Desktop.
Save JustinDFuller/70167eaf10104a2c12778bf77c446b6c to your computer and use it in GitHub Desktop.
Stopping copying
const modifyCopy = e => {
e.clipboardData.setData('text/plain', 'Please don\'t copy our work!');
e.preventDefault();
};
document.addEventListener('copy', modifyCopy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment