-
-
Save davej/cc682ace8e902ec54045067dcf64fac4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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