Content deleted Content added
|
|
<html>
<script type='text/javascript'>
var documentWidth = $(document).width();
var appealWidth = documentWidth - 638; //static width for now
var playerW = appealWidth;
var playerH = playerW * 0.5625; //aspect ratio
$("#appeal-body").width( appealWidth );
$(mw).bind('EmbedPlayerNewPlayer', function( event, embedPlayer ){
$( embedPlayer ).bind( 'playerReady', function(){
embedPlayer.$interface.css({'width': playerW, 'height':playerH})
embedPlayer.updateLayout();
// $("div.mediaContainer").css("display", "");
});
});
</script>
</html>
|