forked from FoundKeyGang/FoundKey
✌️
This commit is contained in:
parent
fd01b4d204
commit
a7cbdbc1f2
1 changed files with 1 additions and 1 deletions
|
@ -82,12 +82,12 @@ Vue.mixin({
|
|||
methods: {
|
||||
_updateDarkmode_(v) {
|
||||
localStorage.setItem('darkmode', v.toString());
|
||||
bus.$emit('updated', v);
|
||||
if (v) {
|
||||
document.documentElement.setAttribute('data-darkmode', 'true');
|
||||
} else {
|
||||
document.documentElement.removeAttribute('data-darkmode');
|
||||
}
|
||||
bus.$emit('updated', v);
|
||||
},
|
||||
_onDarkmodeUpdated_(v) {
|
||||
if (!this.$el || !this.$el.setAttribute) return;
|
||||
|
|
Loading…
Reference in a new issue