Wording and stats improvements

This commit is contained in:
n1474335 2024-04-23 18:28:08 +01:00
parent 42ad9a49f3
commit e61d64f618
No known key found for this signature in database
GPG key ID: D15457B7B4AF3F37
2 changed files with 12 additions and 7 deletions

View file

@ -36,6 +36,11 @@ class ControlsWaiter {
boundary: "viewport",
trigger: "hover"
});
// Set number of operations in various places in the DOM
document.querySelectorAll(".num-ops").forEach(el => {
el.innerHTML = Object.keys(this.app.operations).length;
});
}