mirror of
https://github.com/penpot/penpot.git
synced 2025-01-06 14:50:20 -05:00
16 lines
370 B
JavaScript
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);
|