Skip to content

Instantly share code, notes, and snippets.

@olssonm
Created September 21, 2018 13:20
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 olssonm/d5713863616dee2b60094ef9e912d259 to your computer and use it in GitHub Desktop.
Save olssonm/d5713863616dee2b60094ef9e912d259 to your computer and use it in GitHub Desktop.
Enable paste on sites that blocks it
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