1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

refactor: use event listener to listen for page load event

This commit is contained in:
Paul-Christian Volkmer 2024-01-10 09:22:51 +01:00
parent d88e2973da
commit fad2f33fd6
2 changed files with 4 additions and 4 deletions

View File

@ -4,14 +4,14 @@ const dateFormat = new Intl.DateTimeFormat('de-DE', dateFormatOptions);
const dateTimeFormatOptions = { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: 'numeric', second: 'numeric' };
const dateTimeFormat = new Intl.DateTimeFormat('de-DE', dateTimeFormatOptions);
window.onload = () => {
window.addEventListener('load', () => {
Array.from(document.getElementsByTagName('time')).forEach((timeTag) => {
let date = Date.parse(timeTag.getAttribute('datetime'));
if (! isNaN(date)) {
timeTag.innerText = dateTimeFormat.format(date);
}
});
};
});
function drawPieChart(url, elemId, title, data) {
if (data) {

View File

@ -51,7 +51,7 @@
</main>
<script th:src="@{/scripts.js}"></script>
<script>
window.onload = () => {
window.addEventListener('load', () => {
let keyBindings = {
'w': 'first-page-link',
'a': 'prev-page-link',
@ -66,7 +66,7 @@
}
}
};
};
});
</script>
</body>
</html>