mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
9 lines
No EOL
346 B
JavaScript
9 lines
No EOL
346 B
JavaScript
document.addEventListener("DOMContentLoaded", () => {
|
|
const flagAnchors = document.getElementsByClassName("flag-anchor")
|
|
Array.from(flagAnchors).forEach(flagAnchor => {
|
|
flagAnchor.addEventListener("click", (e) => {
|
|
e.preventDefault()
|
|
document.location = flagAnchor.href + location.hash
|
|
})
|
|
})
|
|
}) |