16 lines
620 B
JavaScript
16 lines
620 B
JavaScript
/**
|
|
* --------------------------------------------------------------------------
|
|
* CoreUI Boostrap Admin Template config.js
|
|
* Licensed under MIT (https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/main/LICENSE)
|
|
* --------------------------------------------------------------------------
|
|
*/
|
|
|
|
(() => {
|
|
const THEME = 'coreui-free-bootstrap-admin-template-theme'
|
|
const urlParams = new URLSearchParams(window.location.href.split('?')[1])
|
|
|
|
if (urlParams.get('theme') && ['auto', 'dark', 'light'].includes(urlParams.get('theme'))) {
|
|
localStorage.setItem(THEME, urlParams.get('theme'))
|
|
}
|
|
})()
|