Skip to content

Instantly share code, notes, and snippets.

@kowalski7cc
Created February 5, 2019 15:39
Show Gist options
  • Save kowalski7cc/a9f9c24272e5c2847d47a08da7a1e3a3 to your computer and use it in GitHub Desktop.
Save kowalski7cc/a9f9c24272e5c2847d47a08da7a1e3a3 to your computer and use it in GitHub Desktop.
Don’t F*ck 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