Skip to content

Commit a03a79d

Browse files
committed
UPDATED: testing style
1 parent 3ad1635 commit a03a79d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

player.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2938,7 +2938,7 @@ function loadTrack(track_index) {
29382938
track_art.style.backgroundImage = "url(" + track_list[track_index].image + ")";
29392939
track_name.textContent = track_list[track_index].name;
29402940
track_artist.textContent = track_list[track_index].artist;
2941-
now_playing.textContent = (track_index + 1) + "/" + track_list.length;
2941+
now_playing.textContent = (track_index + 1) + " / " + track_list.length;
29422942

29432943
// Set an interval of 1000 milliseconds for updating the seek slider
29442944
updateTimer = setInterval(seekUpdate, 1000);

0 commit comments

Comments
 (0)