mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
11 lines
335 B
JavaScript
11 lines
335 B
JavaScript
import { updateMode } from "./lightmode.js";
|
|
import { activateHamburger } from "./hamburger.js";
|
|
import { randomizeWords } from "./randomword.js";
|
|
import { unhide_elements } from "./noscript.js";
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
updateMode();
|
|
activateHamburger();
|
|
randomizeWords();
|
|
unhide_elements();
|
|
});
|