From 8a09e60ef17f2b8f7c8996f7d1447164bff204ae Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 14 Feb 2022 21:27:11 -0300 Subject: [PATCH] Remove ^M in assets/js/* --- assets/js/dark_mode.js | 16 +++---- assets/js/theme.js | 96 +++++++++++++++++++++--------------------- 2 files changed, 56 insertions(+), 56 deletions(-) diff --git a/assets/js/dark_mode.js b/assets/js/dark_mode.js index 863b273..c8d4d96 100644 --- a/assets/js/dark_mode.js +++ b/assets/js/dark_mode.js @@ -1,8 +1,8 @@ -document.addEventListener('DOMContentLoaded', function() { - const mode_toggle = document.getElementById("light-toggle"); - - mode_toggle.addEventListener("click", function() { - toggleTheme(localStorage.getItem("theme")); - }); -}); - +document.addEventListener('DOMContentLoaded', function() { + const mode_toggle = document.getElementById("light-toggle"); + + mode_toggle.addEventListener("click", function() { + toggleTheme(localStorage.getItem("theme")); + }); +}); + diff --git a/assets/js/theme.js b/assets/js/theme.js index 58ab2f7..8bdcb44 100644 --- a/assets/js/theme.js +++ b/assets/js/theme.js @@ -1,48 +1,48 @@ -let toggleTheme = (theme) => { - if (theme == "dark") { - setTheme("light"); - } else { - setTheme("dark"); - } -} - - -let setTheme = (theme) => { - transTheme(); - if (theme) { - document.documentElement.setAttribute("data-theme", theme); - } - else { - document.documentElement.removeAttribute("data-theme"); - } - localStorage.setItem("theme", theme); - - if (typeof medium_zoom !== 'undefined') { - medium_zoom.update({ - background: getComputedStyle(document.documentElement) - .getPropertyValue('--global-bg-color') + 'ee', - }) - } -}; - - -let transTheme = () => { - document.documentElement.classList.add("transition"); - window.setTimeout(() => { - document.documentElement.classList.remove("transition"); - }, 500) -} - - -let initTheme = (theme) => { - if (theme == null) { - const userPref = window.matchMedia; - if (userPref && userPref('(prefers-color-scheme: dark)').matches) { - theme = 'dark'; - } - } - setTheme(theme); -} - - -initTheme(localStorage.getItem("theme")); +let toggleTheme = (theme) => { + if (theme == "dark") { + setTheme("light"); + } else { + setTheme("dark"); + } +} + + +let setTheme = (theme) => { + transTheme(); + if (theme) { + document.documentElement.setAttribute("data-theme", theme); + } + else { + document.documentElement.removeAttribute("data-theme"); + } + localStorage.setItem("theme", theme); + + if (typeof medium_zoom !== 'undefined') { + medium_zoom.update({ + background: getComputedStyle(document.documentElement) + .getPropertyValue('--global-bg-color') + 'ee', + }) + } +}; + + +let transTheme = () => { + document.documentElement.classList.add("transition"); + window.setTimeout(() => { + document.documentElement.classList.remove("transition"); + }, 500) +} + + +let initTheme = (theme) => { + if (theme == null) { + const userPref = window.matchMedia; + if (userPref && userPref('(prefers-color-scheme: dark)').matches) { + theme = 'dark'; + } + } + setTheme(theme); +} + + +initTheme(localStorage.getItem("theme"));