bugfix for hover

This commit is contained in:
ccd0 2013-11-12 04:47:53 -08:00
parent 610d5a6a96
commit faa345671b

View File

@ -71,6 +71,7 @@ function setupVideo(thumb, url) {
video.style.display = "inline";
videoHide.style.display = "inline";
videoContainer.style.display = "block";
videoContainer.style.position = "static";
thumb.style.display = "none";
video.muted = setting("videomuted");
@ -103,6 +104,7 @@ function setupVideo(thumb, url) {
video.style.display = "inline";
videoHide.style.display = "none";
videoContainer.style.display = "inline";
videoContainer.style.position = "fixed";
video.muted = setting("videomuted");
video.controls = false;