Move hide/unhide player to util

This commit is contained in:
Calvin Montgomery 2013-08-05 23:11:56 -04:00
parent 51ea4ce594
commit 775a6752bb
2 changed files with 27 additions and 27 deletions

View file

@ -793,29 +793,3 @@ function handleMediaUpdate(data) {
}
});
}
function hidePlayer() {
if(!PLAYER)
return;
if(!/(chrome|MSIE)/ig.test(navigator.userAgent))
return;
PLAYER.size = {
width: $("#ytapiplayer").attr("width"),
height: $("#ytapiplayer").attr("height")
};
$("#ytapiplayer").attr("width", 1)
.attr("height", 1);
}
function unhidePlayer() {
if(!PLAYER)
return;
if(!/(chrome|MSIE)/ig.test(navigator.userAgent))
return;
$("#ytapiplayer").attr("width", PLAYER.size.width)
.attr("height", PLAYER.size.height);
}

View file

@ -1265,7 +1265,7 @@ function fluidLayout() {
$(this).removeClass("container").addClass("container-fluid");
});
// Video might not be there, but the playlist is
VWIDTH = $("#queue").css("width").replace("px", "");
VWIDTH = $("#videowidth").css("width").replace("px", "");
VHEIGHT = ""+parseInt(parseInt(VWIDTH) * 9 / 16);
if($("#ytapiplayer").length > 0) {
$("#ytapiplayer").attr("width", VWIDTH);
@ -1409,3 +1409,29 @@ function waitUntilDefined(obj, key, fn) {
}
fn();
}
function hidePlayer() {
if(!PLAYER)
return;
if(!/(chrome|MSIE)/ig.test(navigator.userAgent))
return;
PLAYER.size = {
width: $("#ytapiplayer").attr("width"),
height: $("#ytapiplayer").attr("height")
};
$("#ytapiplayer").attr("width", 1)
.attr("height", 1);
}
function unhidePlayer() {
if(!PLAYER)
return;
if(!/(chrome|MSIE)/ig.test(navigator.userAgent))
return;
$("#ytapiplayer").attr("width", PLAYER.size.width)
.attr("height", PLAYER.size.height);
}