Sfoglia il codice sorgente

Fix stylesheet toggle

Use rel attributes to specify currently selected theme.
tags/0.3.0
parent
commit
48881294f8
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. +2
    -0
      packages/react-common-docs/src/components/ThemeToggle/ThemeToggle.tsx

+ 2
- 0
packages/react-common-docs/src/components/ThemeToggle/ThemeToggle.tsx Vedi File

@@ -26,8 +26,10 @@ const applyStyles = (theme) => {
stylesheets.forEach(s => {
const enabled = s.title === theme
if (enabled) {
s.setAttribute('rel', 'stylesheet')
s.removeAttribute('disabled')
} else {
s.setAttribute('rel', 'alternate')
s.setAttribute('disabled', 'disabled')
}
})


Caricamento…
Annulla
Salva