feat: stay in fullscreen when transitioning to next episode

This commit is contained in:
2026-04-26 20:38:09 +02:00
parent 42c71c190c
commit caef6c096c
3 changed files with 25 additions and 57 deletions

View File

@@ -32,6 +32,18 @@ interface EpisodeData {
segments: SkipSegment[]
}
interface EpisodeData {
mal_id: number
title: string
current_episode: string
total_episodes: number
initial_mode: string
token: string
available_modes: string[]
mode_sources: Record<string, ModeSource>
segments: SkipSegment[]
}
let playerInitialized = false
const initPlayer = (): void => {