Update code with changes from git diff

This commit is contained in:
2023-11-10 18:15:14 +00:00
parent 2e00fbec20
commit 2173869717
33 changed files with 7013 additions and 615 deletions

View File

@@ -29,3 +29,12 @@ const check = () => {
}
['scroll', 'resize'].forEach(e => window.addEventListener(e, check))
document.addEventListener('DOMContentLoaded', function () {
const links = document.querySelectorAll('a');
links.forEach(function (link) {
link.addEventListener('click', function (event) {
// event.preventDefault();
});
});
});