mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 00:40:30 -05:00
17 lines
370 B
JavaScript
17 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);
|