diff --git a/javascript/simulation.js b/javascript/simulation.js index 517f665..87693b5 100644 --- a/javascript/simulation.js +++ b/javascript/simulation.js @@ -7,6 +7,12 @@ rock.src = "/media/Art/Rock1.png"; ctx.fill() +cookieStore.getAll().then(data => { + for(let i = 0; i < data.length; i++){ + console.log(data[i]["value"]); + } +}) + var resolutionTag = document.getElementById("resolutionTag"); resolutionTag.textContent = "document: " + window.screen.availWidth + "x" + window.screen.availHeight + ", inner window: " + window.innerWidth + "x" + window.innerHeight;