mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix: failed lint check
This commit is contained in:
parent
8fd9d83d8e
commit
49bae6b67c
1 changed files with 3 additions and 1 deletions
|
@ -581,7 +581,9 @@ function tryRemoveElement(elem) {
|
||||||
const trackElements = this.getTextTracks();
|
const trackElements = this.getTextTracks();
|
||||||
// if .vtt currently rendering
|
// if .vtt currently rendering
|
||||||
if (trackElements.length > 0) {
|
if (trackElements.length > 0) {
|
||||||
trackElements.forEach((trackElement, index) => this.setTextTrackSubtitleOffset(trackElement, offsetValue, index));
|
trackElements.forEach(function (trackElement, index) {
|
||||||
|
this.setTextTrackSubtitleOffset(trackElement, offsetValue, index);
|
||||||
|
});
|
||||||
} else if (this.#currentTrackEvents || this.#currentSecondaryTrackEvents) {
|
} else if (this.#currentTrackEvents || this.#currentSecondaryTrackEvents) {
|
||||||
this.#currentTrackEvents && this.setTrackEventsSubtitleOffset(this.#currentTrackEvents, offsetValue, PRIMARY_TEXT_TRACK_INDEX);
|
this.#currentTrackEvents && this.setTrackEventsSubtitleOffset(this.#currentTrackEvents, offsetValue, PRIMARY_TEXT_TRACK_INDEX);
|
||||||
this.#currentSecondaryTrackEvents && this.setTrackEventsSubtitleOffset(this.#currentSecondaryTrackEvents, offsetValue, SECONDARY_TEXT_TRACK_INDEX);
|
this.#currentSecondaryTrackEvents && this.setTrackEventsSubtitleOffset(this.#currentSecondaryTrackEvents, offsetValue, SECONDARY_TEXT_TRACK_INDEX);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue