0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-06 14:50:20 -05:00
penpot/docs/js/toc.js
2024-10-30 13:30:02 +01:00

16 lines
370 B
JavaScript

(function (window, document) {
"use strict";
let titleEl;
let tocEl;
const titleClicked = (e) => {
tocEl.classList.toggle('open');
};
window.addEventListener('load', () => {
titleEl = document.getElementById("toc-title");
tocEl = document.getElementById("toc");
titleEl.addEventListener("click", titleClicked);
});
})(window, document);