diff --git a/assets/js/burger.ts b/assets/js/burger.ts index 2d465fb6..d82d032f 100644 --- a/assets/js/burger.ts +++ b/assets/js/burger.ts @@ -29,7 +29,7 @@ function close(burger: HTMLElement, content: HTMLElement, body: HTMLElement, roo }, 300); } -function copyArtistLinksTo(burger: HTMLElement) { +function copyUserLinksTo(burger: HTMLElement) { const copy = (links: HTMLCollection) => { burger.appendChild(document.createElement('hr')); @@ -51,7 +51,7 @@ export function setupBurgerMenu() { const body = document.body; const root = document.documentElement; - copyArtistLinksTo(burger); + copyUserLinksTo(burger); toggle.addEventListener('click', event => { event.stopPropagation();