funkwhale/docs/_static/js/translation-hint.js

8 wiersze
245 B
JavaScript
Czysty Zwykły widok Historia

2022-04-26 12:04:02 +00:00
hideTranslationHint = function() {
document.getElementsByClassName("translation-hint")[0].style.display = "none"
}
window.onload = function() {
document.getElementById("translation-closer").addEventListener("click", hideTranslationHint);
}