Removed unused var

This commit is contained in:
Anon 2023-04-30 14:32:23 -07:00
parent ee6e24cdac
commit 7181507aad

View File

@ -66,7 +66,6 @@ function audioPlayer()
currentSong = wrap(idx, aListLinks.length) currentSong = wrap(idx, aListLinks.length)
aListLinks[currentSong].classList.add("current-song"); aListLinks[currentSong].classList.add("current-song");
const aSelected = aListLinks[currentSong].getElementsByTagName("div")[0]
aPlay.src = musicList[currentSong][0] aPlay.src = musicList[currentSong][0]
aTrack.innerHTML = musicList[currentSong][1] aTrack.innerHTML = musicList[currentSong][1]
aArtist.innerHTML = musicList[currentSong][2] aArtist.innerHTML = musicList[currentSong][2]