Skip to content

Instantly share code, notes, and snippets.

@davej
Last active May 4, 2021 16:31
Show Gist options
  • Save davej/cc682ace8e902ec54045067dcf64fac4 to your computer and use it in GitHub Desktop.
Save davej/cc682ace8e902ec54045067dcf64fac4 to your computer and use it in GitHub Desktop.
document.addEventListener('click', (e) => {
const el = e.target;
if (el.tagName == 'A' && el.href) {
// TODO: Run some logic to decide if we should open in web browser
// and set `shouldOpenLinkInBrowser` to true/false
if (shouldOpenLinkInBrowser) {
e.preventDefault();
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