зеркало из https://github.com/mozilla/popcorn-js.git
Guard against youtubeObject going away in _teardown
This commit is contained in:
Родитель
351e9bfac8
Коммит
e1dccf8bf0
|
@ -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 ) );
|
||||
}
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче