diff --git a/client/components/player/PlayerTrackBar.vue b/client/components/player/PlayerTrackBar.vue index 6c96a6bfb..cc581e254 100644 --- a/client/components/player/PlayerTrackBar.vue +++ b/client/components/player/PlayerTrackBar.vue @@ -74,9 +74,6 @@ export default { currentChapterStart() { if (!this.currentChapter) return 0 return this.currentChapter.start - }, - isMobile() { - return this.$store.state.globals.isMobile } }, methods: { @@ -148,9 +145,6 @@ export default { }) }, mousemoveTrack(e) { - if (this.isMobile) { - return - } const offsetX = e.offsetX const baseTime = this.useChapterTrack ? this.currentChapterStart : 0 @@ -204,7 +198,6 @@ export default { setTrackWidth() { if (this.$refs.track) { this.trackWidth = this.$refs.track.clientWidth - this.trackOffsetLeft = this.$refs.track.getBoundingClientRect().left } else { console.error('Track not loaded', this.$refs) } diff --git a/client/pages/share/_slug.vue b/client/pages/share/_slug.vue index 64c099632..bcc779d96 100644 --- a/client/pages/share/_slug.vue +++ b/client/pages/share/_slug.vue @@ -1,5 +1,5 @@