226-css-theme-toggler icon indicating copy to clipboard operation
226-css-theme-toggler copied to clipboard

Solarize/Normalize button text reset on window reload.

Open jgansl opened this issue 4 years ago • 1 comments

If you have it set to 'solarized' and reload the window, the text is 'solarize' when it should be 'normalize'.

jgansl avatar Mar 29 '20 20:03 jgansl

Fix:

if (theme) { body.classList.add(theme); isSolar && body.classList.add("solar"); if (isSolar) { solarButton.innerText = "Normalize"; solarButton.style.cssText = --bg-solar: white;; } }

jgansl avatar Mar 29 '20 20:03 jgansl