We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ad1635 commit a03a79dCopy full SHA for a03a79d
player.js
@@ -2938,7 +2938,7 @@ function loadTrack(track_index) {
2938
track_art.style.backgroundImage = "url(" + track_list[track_index].image + ")";
2939
track_name.textContent = track_list[track_index].name;
2940
track_artist.textContent = track_list[track_index].artist;
2941
- now_playing.textContent = (track_index + 1) + "/" + track_list.length;
+ now_playing.textContent = (track_index + 1) + " / " + track_list.length;
2942
2943
// Set an interval of 1000 milliseconds for updating the seek slider
2944
updateTimer = setInterval(seekUpdate, 1000);
0 commit comments