mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-26 15:18:01 +00:00
9 lines
346 B
JavaScript
9 lines
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
|
|
})
|
|
})
|
|
}) |