This commit is contained in:
Kate Hudson 2012-06-05 11:02:39 -04:00
Родитель fc8c015d78
Коммит 7bcfc2922c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -228,7 +228,7 @@ Popcorn.player( "youtube", {
height = media.clientHeight >= 390 ? "" + media.clientHeight : "390"; height = media.clientHeight >= 390 ? "" + media.clientHeight : "390";
width = media.clientWidth >= 640 ? "" + media.clientWidth : "640"; width = media.clientWidth >= 640 ? "" + media.clientWidth : "640";
media.style.display = "block"; media.style.display = originalStyle;
options.youtubeObject = new YT.Player( container.id, { options.youtubeObject = new YT.Player( container.id, {
height: height, height: height,
@ -340,7 +340,7 @@ Popcorn.player( "youtube", {
var youtubeObject = options.youtubeObject; var youtubeObject = options.youtubeObject;
if( youtubeObject ){ if( youtubeObject ){
youtubeObject.stopVideo(); youtubeObject.stopVideo();
// youtubeObject.clearVideo(); youtubeObject.clearVideo();
} }
this.removeChild( document.getElementById( options._container.id ) ); this.removeChild( document.getElementById( options._container.id ) );