I DID IT
parent
75d2fe5442
commit
3235e5d087
@ -1,79 +1,35 @@
|
|||||||
(function () {
|
(function () {
|
||||||
// your page initialization code here
|
// your page initialization code here
|
||||||
// the DOM will be available here
|
// the DOM will be available here
|
||||||
|
|
||||||
const toggler = document.querySelector(".toggler");
|
const toggler = document.querySelector(".toggler");
|
||||||
console.log(toggler);
|
console.log(toggler);
|
||||||
toggler.addEventListener(
|
toggler.addEventListener(
|
||||||
"click",
|
"click",
|
||||||
function (e) {
|
function (e) {
|
||||||
const element = document.querySelector(".navbar");
|
const element = document.querySelector(".navbar");
|
||||||
element.classList.toggle("active");
|
element.classList.toggle("active");
|
||||||
},
|
},
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
|
|
||||||
const isDark = localStorage.getItem("isDark");
|
const isDark = localStorage.getItem("isDark");
|
||||||
if (isDark == 1) {
|
if (isDark == 1) {
|
||||||
const element = document.querySelector("body");
|
|
||||||
element.classList.add("dark");
|
|
||||||
}
|
|
||||||
const themetoggler = document.querySelector(".themetoggler");
|
|
||||||
themetoggler.addEventListener(
|
|
||||||
"click",
|
|
||||||
function (e) {
|
|
||||||
e.preventDefault();
|
|
||||||
const element = document.querySelector("body");
|
const element = document.querySelector("body");
|
||||||
element.classList.toggle("dark");
|
element.classList.add("dark");
|
||||||
|
}
|
||||||
const isDark = localStorage.getItem("isDark");
|
const themetoggler = document.querySelector(".themetoggler");
|
||||||
localStorage.setItem("isDark", isDark == 1 ? 0 : 1);
|
themetoggler.addEventListener(
|
||||||
},
|
"click",
|
||||||
false
|
function (e) {
|
||||||
);
|
e.preventDefault();
|
||||||
|
const element = document.querySelector("body");
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
element.classList.toggle("dark");
|
||||||
// Move all your code here
|
|
||||||
|
|
||||||
var mutationObserver = new MutationObserver(function(mutations) {
|
const isDark = localStorage.getItem("isDark");
|
||||||
mutations.forEach(function(mutation) {
|
localStorage.setItem("isDark", isDark == 1 ? 0 : 1);
|
||||||
var checkboxes = document.querySelectorAll('.cbi-checkbox input[type="checkbox"]');
|
},
|
||||||
|
false
|
||||||
checkboxes.forEach(function(checkbox) {
|
);
|
||||||
// Check if toggle switch is already created
|
})();
|
||||||
if (!checkbox.nextSibling || checkbox.nextSibling.className !== 'switch') {
|
|
||||||
var switchElement = document.createElement('label');
|
|
||||||
switchElement.className = 'switch';
|
|
||||||
|
|
||||||
var input = document.createElement('input');
|
|
||||||
input.type = 'checkbox';
|
|
||||||
input.checked = checkbox.checked;
|
|
||||||
switchElement.appendChild(input);
|
|
||||||
|
|
||||||
var slider = document.createElement('span');
|
|
||||||
slider.className = 'slider';
|
|
||||||
switchElement.appendChild(slider);
|
|
||||||
|
|
||||||
// Add the switch to the div wrapping the checkbox
|
|
||||||
checkbox.parentNode.insertBefore(switchElement, checkbox);
|
|
||||||
|
|
||||||
// Hide the original checkbox
|
|
||||||
checkbox.style.display = 'none';
|
|
||||||
|
|
||||||
input.addEventListener('change', function() {
|
|
||||||
checkbox.checked = this.checked;
|
|
||||||
});
|
|
||||||
|
|
||||||
var observer = new MutationObserver(function() {
|
|
||||||
input.checked = checkbox.checked;
|
|
||||||
});
|
|
||||||
observer.observe(checkbox, { attributes: true });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
mutationObserver.observe(document.documentElement, { childList: true, subtree: true });
|
|
||||||
});
|
|
||||||
|
|
||||||
})(); // Make sure to include this closing partz
|
|
Loading…
Reference in New Issue