Fix config page not scrolling, add scroll arrows on home page, fix routing issue on back button, fix continue reading shelf

This commit is contained in:
advplyr 2021-09-28 17:36:41 -05:00
parent 8389a31775
commit 8dc0acb6b7
11 changed files with 195 additions and 95 deletions

View file

@ -120,12 +120,10 @@ export default {
}
},
methods: {
back() {
if (this.$route.name === 'audiobook-id-edit') {
this.$router.push(`/audiobook/${this.$route.params.id}`)
} else {
this.$router.push('/library')
}
async back() {
var popped = await this.$store.dispatch('popRoute')
var backTo = popped || '/'
this.$router.push(backTo)
},
cancelSelectionMode() {
if (this.processingBatchDelete) return