feature/56-footer-version-loading #57

Merged
philipp merged 3 commits from feature/56-footer-version-loading into dev 2021-01-30 15:33:26 +00:00
Showing only changes of commit 901c7c1241 - Show all commits

View File

@ -1,12 +1,12 @@
<script>
import { _ } from "svelte-i18n";
$: releaseinfo = "";
setTimeout(() => {
document.addEventListener("DOMContentLoaded", (event) => {
releaseinfo = document
.getElementById("buildinfo")
.textContent.replace("RELEASE_INFO-", "")
.replace("-RELEASE_INFO", "");
}, 1500);
});
const year = new Date().getFullYear();
</script>