mirror of
https://git.kittycat.homes/zoe/hugo-batsite.git
synced 2024-08-15 03:18:24 +00:00
7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
import { updateMode } from "./lightmode.js";
|
|
import { activateHamburger } from "./hamburger.js";
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
updateMode();
|
|
activateHamburger();
|
|
});
|