1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Footer hide fix

Had to hide() before the append()
This commit is contained in:
Tim Hobbs 2014-03-14 14:37:33 -07:00
parent 20b21fd1f4
commit 941824a5fb

View file

@ -46,7 +46,7 @@
var mediaElement = $("#mediaElement", videoBackdrop);
var nowPlayingBar = $("#nowPlayingBar", videoBackdrop);
mediaElement.html(""); // remove play/pause
footer.append(mediaElement).append(nowPlayingBar).hide();
footer.hide().append(mediaElement).append(nowPlayingBar);
videoBackdrop.remove();
};