From 6efd8badbe03692c384c3883c9620ea8cafd27d9 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 14 Feb 2022 21:25:31 -0300 Subject: [PATCH] Remove comments --- assets/js/theme.js | 5 +---- assets/js/zoom.js | 3 +-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/assets/js/theme.js b/assets/js/theme.js index 371365e..58ab2f7 100644 --- a/assets/js/theme.js +++ b/assets/js/theme.js @@ -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', }) } }; diff --git a/assets/js/zoom.js b/assets/js/zoom.js index c8610d6..1852173 100644 --- a/assets/js/zoom.js +++ b/assets/js/zoom.js @@ -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', }) });