You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So for my app I've got a playlist that is pulled into the app as a JSON and then the song title and artist is rendered using an ng-repeat directive. In each ng-repeat I'm creating the tag with
Any ideas on how I could possibly fix this? Otherwise been a great player.
The text was updated successfully, but these errors were encountered:
Just keep the playlist as JSON in the controller (it should respect this structure), you only need 1 audio-player tag, it may be empty at the start.
When the playlist gets populated, you can use ng-repeat to display title/artist, and put a ng-click=audioTag.playPause($index) on the element representing the song.
So for my app I've got a playlist that is pulled into the app as a JSON and then the song title and artist is rendered using an ng-repeat directive. In each ng-repeat I'm creating the tag with
Any ideas on how I could possibly fix this? Otherwise been a great player.
The text was updated successfully, but these errors were encountered: