Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Last active December 31, 2015 21:49
Show Gist options
  • Select an option

  • Save lonekorean/8049462 to your computer and use it in GitHub Desktop.

Select an option

Save lonekorean/8049462 to your computer and use it in GitHub Desktop.
Suppress assets pop up on CodePen
document.querySelector('html').ondragenter = function(e) {
e.stopPropagation();
return false;
};
document.querySelector('html').ondragover = function(e) {
e.stopPropagation();
return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment