Continuous playing between songs fixed.

This commit is contained in:
2022-04-18 01:59:54 -05:00
parent 8cb39bf9cc
commit 62145ef741
4 changed files with 29 additions and 10 deletions

View File

@@ -6,4 +6,6 @@ playlist.add("/audio/moments.mp3", "moments", "Lost Identities x Robbie Rosen");
playlist.add("/audio/XXI.mp3", "XXI", "QR");
const player = ask.player.createSongPlayer(playlist);
const playerElem = document.getElementById("player-showcase");
playerElem.appendChild(player.generatePlayElement());
playerElem.appendChild(player.generatePlayElement());
playerElem.appendChild(player.generateNextElement());
playerElem.appendChild(player.generatePreviousElement());