You've already forked AstralRinth
forked from didirus/AstralRinth
* Fix auto updater, add failure message, fix modals * Fix ads hiding, updater UI * dummy version, fix gh actions cache * fix release conf * actual version bump * Fix ads hiding sometimes * Fix event state init * fix remaining bugs * Fix lint on linux * Fix deep linking on Windows * Fix ad links opening multiple times
21 lines
562 B
JavaScript
21 lines
562 B
JavaScript
if (!window.modrinthClickListener) {
|
|
window.modrinthClickListener = true
|
|
document.addEventListener('click', function (e) {
|
|
let target = e.target
|
|
while (target != null) {
|
|
if (target.matches('a')) {
|
|
e.preventDefault()
|
|
if (target.href) {
|
|
window.top.postMessage({ modrinthOpenUrl: target.href }, 'https://modrinth.com')
|
|
}
|
|
break
|
|
}
|
|
target = target.parentElement
|
|
}
|
|
})
|
|
}
|
|
|
|
window.open = (url, target, features) => {
|
|
window.top.postMessage({ modrinthOpenUrl: url }, 'https://modrinth.com')
|
|
}
|