Skip to content

Instantly share code, notes, and snippets.

@JustinDFuller
Last active January 16, 2017 02:16
Show Gist options
  • Select an option

  • Save JustinDFuller/70167eaf10104a2c12778bf77c446b6c to your computer and use it in GitHub Desktop.

Select an option

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