mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-15 12:48:22 +00:00
Add efy trans filter support for chapters
This commit is contained in:
parent
3a5ce2b023
commit
d8c6f4c1cb
@ -1,12 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<!-- desktop view -->
|
<!-- desktop view -->
|
||||||
<div v-if="!mobileLayout" class="pp-chapters flex-col overflow-y-scroll max-h-75vh min-h-64 lt-lg:hidden">
|
<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
|
<div
|
||||||
:key="chapter.start"
|
:key="chapter.start"
|
||||||
v-for="(chapter, index) in chapters"
|
v-for="(chapter, index) in chapters"
|
||||||
@click="$emit('seek', chapter.start)"
|
@click="$emit('seek', chapter.start)"
|
||||||
class="chapter efy_anim_pulse"
|
class="chapter efy_anim_pulse efy_trans_filter"
|
||||||
:class="{ 'pp-chapter-active': isCurrentChapter(index) }"
|
:class="{ 'pp-chapter-active': isCurrentChapter(index) }"
|
||||||
>
|
>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
@ -24,7 +26,7 @@
|
|||||||
:key="chapter.start"
|
:key="chapter.start"
|
||||||
v-for="(chapter, index) in chapters"
|
v-for="(chapter, index) in chapters"
|
||||||
@click="$emit('seek', chapter.start)"
|
@click="$emit('seek', chapter.start)"
|
||||||
class="chapter efy_anim_pulse"
|
class="chapter efy_anim_pulse efy_trans_filter"
|
||||||
:class="{ 'pp-chapter-active': isCurrentChapter(index) }"
|
:class="{ 'pp-chapter-active': isCurrentChapter(index) }"
|
||||||
>
|
>
|
||||||
<img :src="chapter.image" :alt="chapter.title" />
|
<img :src="chapter.image" :alt="chapter.title" />
|
||||||
|
Loading…
Reference in New Issue
Block a user