Skip to content

Instantly share code, notes, and snippets.

@rohitdatta
Created February 23, 2020 19:53
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 rohitdatta/8d9834f0eaf09a8a3273a1ca4264826f to your computer and use it in GitHub Desktop.
Save rohitdatta/8d9834f0eaf09a8a3273a1ca4264826f to your computer and use it in GitHub Desktop.
Don't fuck with paste
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment