Guard against youtubeObject going away in _teardown

This commit is contained in:
David Humphrey (:humph) david.humphrey@senecacollege.ca 2012-05-23 11:37:28 -04:00
Родитель 351e9bfac8
Коммит e1dccf8bf0
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -351,8 +351,13 @@ Popcorn.player( "youtube", {
_teardown: function( options ) {
options.destroyed = true;
options.youtubeObject.stopVideo();
options.youtubeObject.clearVideo();
var youtubeObject = options.youtubeObject;
if( youtubeObject ){
youtubeObject.stopVideo();
youtubeObject.clearVideo();
}
this.removeChild( document.getElementById( options._container.id ) );
}
});