diff --git a/client/components/Reader/Reader.vue b/client/components/Reader/Reader.vue index 77825353..1f327133 100644 --- a/client/components/Reader/Reader.vue +++ b/client/components/Reader/Reader.vue @@ -220,6 +220,7 @@ class Reader extends Vue { this.allowUrlParamBookPos = settings.allowUrlParamBookPos; this.copyFullText = settings.copyFullText; this.showClickMapPage = settings.showClickMapPage; + this.clickControl = settings.clickControl; this.blinkCachedLoad = settings.blinkCachedLoad; } @@ -555,8 +556,8 @@ class Reader extends Vue { return classResult; } - async acivateClickMapPage() { - if (this.showClickMapPage && !this.clickMapActive) { + async activateClickMapPage() { + if (this.clickControl && this.showClickMapPage && !this.clickMapActive) { this.clickMapActive = true; await this.$refs.clickMapPage.slowDisappear(); this.clickMapActive = false; @@ -661,7 +662,7 @@ class Reader extends Vue { progress.hide(); this.progressActive = false; this.blinkCachedLoadMessage(); - await this.acivateClickMapPage(); + await this.activateClickMapPage(); return; } @@ -709,7 +710,7 @@ class Reader extends Vue { } else this.stopBlink = true; - await this.acivateClickMapPage(); + await this.activateClickMapPage(); } catch (e) { progress.hide(); this.progressActive = false; this.loaderActive = true; diff --git a/client/components/Reader/SettingsPage/SettingsPage.vue b/client/components/Reader/SettingsPage/SettingsPage.vue index cdec6dca..ad4a22d0 100644 --- a/client/components/Reader/SettingsPage/SettingsPage.vue +++ b/client/components/Reader/SettingsPage/SettingsPage.vue @@ -252,7 +252,7 @@ - Показывать области управления кликом + Показывать области управления кликом