mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 15:33:08 +02:00
✌️
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: {
|
methods: {
|
||||||
_updateDarkmode_(v) {
|
_updateDarkmode_(v) {
|
||||||
localStorage.setItem('darkmode', v.toString());
|
localStorage.setItem('darkmode', v.toString());
|
||||||
bus.$emit('updated', v);
|
|
||||||
if (v) {
|
if (v) {
|
||||||
document.documentElement.setAttribute('data-darkmode', 'true');
|
document.documentElement.setAttribute('data-darkmode', 'true');
|
||||||
} else {
|
} else {
|
||||||
document.documentElement.removeAttribute('data-darkmode');
|
document.documentElement.removeAttribute('data-darkmode');
|
||||||
}
|
}
|
||||||
|
bus.$emit('updated', v);
|
||||||
},
|
},
|
||||||
_onDarkmodeUpdated_(v) {
|
_onDarkmodeUpdated_(v) {
|
||||||
if (!this.$el || !this.$el.setAttribute) return;
|
if (!this.$el || !this.$el.setAttribute) return;
|
||||||
|
|
Loading…
Reference in a new issue