Skip to content

Instantly share code, notes, and snippets.

@trevor-atlas
Created October 28, 2014 00:25
Show Gist options
  • Save trevor-atlas/c903b48c8ee8480c4a20 to your computer and use it in GitHub Desktop.
Save trevor-atlas/c903b48c8ee8480c4a20 to your computer and use it in GitHub Desktop.
restore middle click functionality on e.preventDefault() links
// allow command-click and control-click to open new tab
if (event.metaKey || event.ctrlKey) {
return;
} else {
event.preventDefault();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment