This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
296 B
JavaScript

/* Open when someone clicks on the span element */
function openActions() {
document.getElementById("actions").style.width = "25%";
}
/* Close when someone clicks on the "x" symbol inside the overlay */
function closeActions() {
document.getElementById("actions").style.width = "0%";
}