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
+1 -1
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();
};