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:
parent
20b21fd1f4
commit
941824a5fb
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@
|
||||||
var mediaElement = $("#mediaElement", videoBackdrop);
|
var mediaElement = $("#mediaElement", videoBackdrop);
|
||||||
var nowPlayingBar = $("#nowPlayingBar", videoBackdrop);
|
var nowPlayingBar = $("#nowPlayingBar", videoBackdrop);
|
||||||
mediaElement.html(""); // remove play/pause
|
mediaElement.html(""); // remove play/pause
|
||||||
footer.append(mediaElement).append(nowPlayingBar).hide();
|
footer.hide().append(mediaElement).append(nowPlayingBar);
|
||||||
videoBackdrop.remove();
|
videoBackdrop.remove();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue