diff --git a/modules/web/web.js b/modules/web/web.js index b2c5219..c741f36 100644 --- a/modules/web/web.js +++ b/modules/web/web.js @@ -204,6 +204,10 @@ function renderPlaylist() { } else if (i === currentTrackIndex) { li.classList.add("pointer"); currentIndex = i - 1; + if(skipCountToRender > 0) { + li.style.textDecoration = "line-through"; + skipCountToRender--; + } } if (skipCountToRender > 0 && i > currentTrackIndex) {