FEP / script.js
JairoDanielMT's picture
Update script.js
60771df verified
raw
history blame contribute delete
367 Bytes
// 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";
}
}