Add efy trans filter support for chapters

This commit is contained in:
Dragos 2022-11-11 14:21:47 +02:00 committed by GitHub
parent 3a5ce2b023
commit d8c6f4c1cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,14 @@
<template>
<!-- desktop view -->
<div v-if="!mobileLayout" class="pp-chapters flex-col overflow-y-scroll max-h-75vh min-h-64 lt-lg:hidden">
<h6 aria-label="chapters" title="chapters">{{ $t("video.chapters") }} - {{ chapters.length }}</h6>
<h6 aria-label="chapters" title="chapters" class="efy_trans_filter">
{{ $t("video.chapters") }} - {{ chapters.length }}
</h6>
<div
:key="chapter.start"
v-for="(chapter, index) in chapters"
@click="$emit('seek', chapter.start)"
class="chapter efy_anim_pulse"
class="chapter efy_anim_pulse efy_trans_filter"
:class="{ 'pp-chapter-active': isCurrentChapter(index) }"
>
<div class="flex">
@ -24,7 +26,7 @@
:key="chapter.start"
v-for="(chapter, index) in chapters"
@click="$emit('seek', chapter.start)"
class="chapter efy_anim_pulse"
class="chapter efy_anim_pulse efy_trans_filter"
:class="{ 'pp-chapter-active': isCurrentChapter(index) }"
>
<img :src="chapter.image" :alt="chapter.title" />