diff --git a/client/components/Reader/Reader.vue b/client/components/Reader/Reader.vue index b38922c7..773515e7 100644 --- a/client/components/Reader/Reader.vue +++ b/client/components/Reader/Reader.vue @@ -72,6 +72,8 @@ export default @Component({ const textPage = this.$refs.page; if (textPage.bookPos != newValue) { textPage.bookPos = newValue; + } + if (this.lastOpenedBook && this.lastOpenedBook.bookPos != newValue) { this.commit('reader/setOpenedBook', Object.assign({}, this.lastOpenedBook, {bookPos: newValue})); } }