Skip to content

Instantly share code, notes, and snippets.

@Aarbel
Forked from davej/handleToDesktopClick.js
Last active May 4, 2021 16:34
Show Gist options
  • Save Aarbel/6665bf679871774b2be03aeee30d88f9 to your computer and use it in GitHub Desktop.
Save Aarbel/6665bf679871774b2be03aeee30d88f9 to your computer and use it in GitHub Desktop.
document.addEventListener('click', (e) => {
const el = e.target;
if (el.tagName == 'A' && el.href && el.getAttribute("target") === "_blank") {
window.todesktop.contents.openUrlInBrowser(el.href);
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment