MeetGeniusAI / static /script.js
LovnishVerma's picture
Upload 12 files
944bf22 verified
raw
history blame contribute delete
361 Bytes
const toggleBtn = document.getElementById("themeToggle");
const body = document.body;
const loader = document.getElementById("loader");
toggleBtn.onclick = () => {
body.classList.toggle("dark");
toggleBtn.textContent = body.classList.contains("dark") ? "โ˜€๏ธ" : "๐ŸŒ™";
};
function startLoading() {
loader.style.display = "block";
}