This commit is contained in:
2026-09-05 20:37:31 -05:00
parent c6fa2c41a7
commit d73ed21719
6 changed files with 246 additions and 10 deletions

View File

@@ -98,6 +98,12 @@ function backButton() {
goto(path.substring(1), { push: false });
}
function toggleFeatureProject(header) {
const panel = header.closest(".feature-project");
const expanded = panel.classList.toggle("expanded");
header.setAttribute("aria-expanded", expanded ? "true" : "false");
}
function activeSkill(obj) {
let skill = obj.closest(".skill");
if (skill.classList.contains("activeSkill")) {