From 5e3a58c35e59bff1d457d418fef807c9b001be77 Mon Sep 17 00:00:00 2001 From: Tsachi Shlidor Date: Thu, 5 Oct 2023 20:13:40 +0300 Subject: [PATCH] fix: eslint --- src/plugins/chapters/index.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/plugins/chapters/index.js b/src/plugins/chapters/index.js index d1cfb2fc..6bbfd14f 100644 --- a/src/plugins/chapters/index.js +++ b/src/plugins/chapters/index.js @@ -1,5 +1,3 @@ -// Todo: eslint -/* eslint-disable */ import videojs from 'video.js'; import './chapters.scss'; @@ -48,6 +46,7 @@ const chapters = function chapters(options) { * Chapters */ const ChaptersPlugin = (function () { + /** * Plugin class constructor, called by videojs on * ready event. @@ -85,7 +84,7 @@ const ChaptersPlugin = (function () { */ ChaptersPlugin.prototype.initializeChapters = function initializeChapters() { if (this.options.url) { - var chaptersTrack = { + const chaptersTrack = { kind: 'chapters', src: this.options.url }; @@ -99,10 +98,10 @@ const ChaptersPlugin = (function () { } else { const textTrack = this.player.addTextTrack('chapters'); const end = this.player.duration(); - const cues = Object.entries(this.options).map((entry, index, obj) => { + Object.entries(this.options).forEach((entry, index, arr) => { const cue = new VTTCue( parseFloat(entry[0]), - parseFloat(obj[index + 1] ? obj[index + 1][0] : end), + parseFloat(arr[index + 1] ? arr[index + 1][0] : end), entry[1] ); textTrack.addCue(cue); @@ -190,6 +189,6 @@ const ChaptersPlugin = (function () { }; return ChaptersPlugin; -})(); +}()); export default chapters;