Remove comments
This commit is contained in:
parent
a3f96f6c08
commit
6efd8badbe
|
@ -1,5 +1,3 @@
|
||||||
// Has to be in the head tag, otherwise a flicker effect will occur.
|
|
||||||
|
|
||||||
let toggleTheme = (theme) => {
|
let toggleTheme = (theme) => {
|
||||||
if (theme == "dark") {
|
if (theme == "dark") {
|
||||||
setTheme("light");
|
setTheme("light");
|
||||||
|
@ -19,11 +17,10 @@ let setTheme = (theme) => {
|
||||||
}
|
}
|
||||||
localStorage.setItem("theme", theme);
|
localStorage.setItem("theme", theme);
|
||||||
|
|
||||||
// Updates the background of medium-zoom overlay.
|
|
||||||
if (typeof medium_zoom !== 'undefined') {
|
if (typeof medium_zoom !== 'undefined') {
|
||||||
medium_zoom.update({
|
medium_zoom.update({
|
||||||
background: getComputedStyle(document.documentElement)
|
background: getComputedStyle(document.documentElement)
|
||||||
.getPropertyValue('--global-bg-color') + 'ee', // + 'ee' for trasparency.
|
.getPropertyValue('--global-bg-color') + 'ee',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
// Initialize medium zoom.
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
medium_zoom = mediumZoom('[data-zoomable]', {
|
medium_zoom = mediumZoom('[data-zoomable]', {
|
||||||
margin: 100,
|
margin: 100,
|
||||||
background: getComputedStyle(document.documentElement)
|
background: getComputedStyle(document.documentElement)
|
||||||
.getPropertyValue('--global-bg-color') + 'ee', // + 'ee' for trasparency.
|
.getPropertyValue('--global-bg-color') + 'ee',
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue