UNPKG
@evg-b/evg-ui
Version:
latest (0.0.2)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.2
0.0.1
EVG-UI library inspired by Material Design.
github.com/evg-b/EVG-UI
evg-b/EVG-UI
@evg-b/evg-ui
/
dist
/
utils
/
dom
/
getThemeName.js
7 lines
(5 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
function
getThemeName
(
) {
// ищем в определенном месте dom название активной темы и возвращаем
return
typeof
window
!==
"undefined"
?
document
.
body
.
getAttribute
(
'th-name'
) :
''
; }
export
default
getThemeName;