mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
11 lines
296 B
JavaScript
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%";
|
|
}
|
|
|