浏览代码

Добавил проверку __p при выходе за пределы текста

Book Pauk 6 年之前
父节点
当前提交
dbb511b35e
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      client/components/Reader/TextPage/TextPage.vue

+ 5 - 0
client/components/Reader/TextPage/TextPage.vue

@@ -230,6 +230,11 @@ class TextPage extends Vue {
     }
     
     draw(immediate) {
+        if (this.book && this.bookPos >= this.parsed.textLength) {
+            this.doEnd();
+            return;
+        }
+
         this.canvasShowFirst = !this.canvasShowFirst;
         const context = this.context;