-
-
Save Aarbel/6665bf679871774b2be03aeee30d88f9 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 && 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