Remove comments

This commit is contained in:
Santiago Lo Coco 2022-02-14 21:25:31 -03:00
parent a3f96f6c08
commit 6efd8badbe
2 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,3 @@
// Has to be in the head tag, otherwise a flicker effect will occur.
let toggleTheme = (theme) => {
if (theme == "dark") {
setTheme("light");
@ -19,11 +17,10 @@ let setTheme = (theme) => {
}
localStorage.setItem("theme", theme);
// Updates the background of medium-zoom overlay.
if (typeof medium_zoom !== 'undefined') {
medium_zoom.update({
background: getComputedStyle(document.documentElement)
.getPropertyValue('--global-bg-color') + 'ee', // + 'ee' for trasparency.
.getPropertyValue('--global-bg-color') + 'ee',
})
}
};

View File

@ -1,8 +1,7 @@
// Initialize medium zoom.
$(document).ready(function() {
medium_zoom = mediumZoom('[data-zoomable]', {
margin: 100,
background: getComputedStyle(document.documentElement)
.getPropertyValue('--global-bg-color') + 'ee', // + 'ee' for trasparency.
.getPropertyValue('--global-bg-color') + 'ee',
})
});