Fixed error where adding whole playlists hides some songs

This commit is contained in:
Kasper Rynning-Tønnesen
2016-04-28 08:21:57 +02:00
parent 6a37d3444c
commit 5ffd3de8cc
3 changed files with 4 additions and 3 deletions

View File

@@ -210,10 +210,11 @@ var List = {
else
$("#wrapper > div:nth-child(" + (i) + ")").after(List.generateSong(song_info, transition, false, true, false));
var added = $("#wrapper").children()[i];
if(transition)
{
setTimeout(function(){
var added = $("#wrapper").children()[i];
$(added).css("height", 66);
},5);
}