Spaces:
Running
Running
File size: 367 Bytes
60771df | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | // Initialization for ES Users
import {
Carousel,
initTWE,
} from "tw-elements";
initTWE({ Carousel });
function toggleCollapse(id) {
const content = document.getElementById(id);
if (content.style.display === "none" || content.style.display === "") {
content.style.display = "block";
} else {
content.style.display = "none";
}
}
|