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);
}