1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-07-01 22:22:53 +00:00

refactor: use event listener to listen for page load event

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

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>