Show sourcecode
The following files exists in this folder. Click to view.
index.js
index.php
javascript.js
jsonIndex.json
save.json
test.php
javascript.js
12 lines ASCII Windows (CRLF)
document.addEventListener("keydown", register);
const actions = {};
const startTime = Date.now();
document.getElementById("actions").value = "";
document.getElementById("time").value = startTime;
function register(key) {
actions[Date.now() - startTime] = key.key;
document.getElementById("actions").value += Date.now() - startTime + ":" + key.key + ",";
console.log(document.getElementById("actions").value);
}