Skip to content

Commit

Permalink
Cover issue in playbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Rello committed Sep 3, 2019
1 parent a83d700 commit f79bdc4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/app.js
Expand Up @@ -456,7 +456,10 @@ OCA.Audioplayer.Category = {
document.getElementById('individual-playlist-info').style.display = 'block';
document.getElementById('individual-playlist-header').style.display = 'block';

document.getElementById('playlist-container').innerHTML = '<ul id="individual-playlist" class="albumwrapper"></ul>';
var ul = document.createElement('ul');
ul.id = 'individual-playlist';
ul.classList.add('albumwrapper');
document.getElementById('playlist-container').appendChild(ul);

document.querySelector('.header-title').dataset.order = '';
document.querySelector('.header-artist').dataset.order = '';
Expand Down

0 comments on commit f79bdc4

Please sign in to comment.