wanders & mod time added

This commit is contained in:
2024-06-21 10:40:48 +01:00
parent 951224f0ea
commit e825506bbd
18 changed files with 197 additions and 81 deletions

9
public/js/wander.js Normal file
View File

@@ -0,0 +1,9 @@
function GetWanderCount(){
let element = document.getElementById('wander-count')
fetch('../json/counter.json')
.then((response) => response.json())
.then((json) => element.innerHTML = json['count']);
}
GetWanderCount()