bugfix: auto-bookmark setting was not saved
bugfix: auto-bookmark setting was not saved
This commit is contained in:
parent
3341c5df68
commit
b07aaf38b9
15
src/App.vue
15
src/App.vue
@ -250,6 +250,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"$store.getters.autoBookmark" (val) {
|
||||||
|
localStorage.autoBookmark = val;
|
||||||
|
},
|
||||||
|
|
||||||
"$store.getters.darkTheme" (val) {
|
"$store.getters.darkTheme" (val) {
|
||||||
this.setTheme(val == true ? "dark" : "light");
|
this.setTheme(val == true ? "dark" : "light");
|
||||||
localStorage.darkTheme = val;
|
localStorage.darkTheme = val;
|
||||||
@ -682,20 +686,13 @@
|
|||||||
.to-top-button
|
.to-top-button
|
||||||
margin-bottom: 80px
|
margin-bottom: 80px
|
||||||
|
|
||||||
footer
|
|
||||||
background: transparent !important
|
|
||||||
|
|
||||||
.v-application.v-theme--
|
.v-application.v-theme--
|
||||||
&light
|
&light
|
||||||
header, footer > .v-card.player-interface
|
header, footer
|
||||||
background: rgba(255, 255, 255, .5)
|
background: rgba(255, 255, 255, .5)
|
||||||
footer > .v-card.player-interface.solid-bg
|
|
||||||
background: #fff
|
|
||||||
&dark
|
&dark
|
||||||
header, footer > .v-card.player-interface
|
header, footer
|
||||||
background: rgba(15, 15,15, .5)
|
background: rgba(15, 15,15, .5)
|
||||||
footer > .v-card.player-interface.solid-bg
|
|
||||||
background: #000
|
|
||||||
|
|
||||||
.content-container
|
.content-container
|
||||||
height: calc(100vh - 160px)
|
height: calc(100vh - 160px)
|
||||||
|
|||||||
@ -2,7 +2,7 @@ const messages = {
|
|||||||
appName: "AudioLib",
|
appName: "AudioLib",
|
||||||
about: "About",
|
about: "About",
|
||||||
authors: "Authors",
|
authors: "Authors",
|
||||||
autoBookmarks: "Auto bookmarks",
|
autoBookmarks: "Auto-bookmarks",
|
||||||
book: "Books",
|
book: "Books",
|
||||||
bookmarkSaved: "Bookmark saved",
|
bookmarkSaved: "Bookmark saved",
|
||||||
books: "Book",
|
books: "Book",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user