Created
February 5, 2019 15:39
-
-
Save kowalski7cc/a9f9c24272e5c2847d47a08da7a1e3a3 to your computer and use it in GitHub Desktop.
Don’t F*ck with Paste
This file contains 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
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