Bug 1006973 - Fix bustage in casting pageaction r=wesj

This commit is contained in:
Mark Finkle 2014-05-07 07:56:22 -04:00
Родитель 78e9f554ca
Коммит 1d76e797e1
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -89,7 +89,8 @@ var CastingApps = {
case "ended": {
let video = aEvent.target;
if (video instanceof HTMLVideoElement) {
this._updatePageActionForVideo(video);
// If playing, send the <video>, but if ended we send nothing to shutdown the pageaction
this._updatePageActionForVideo(aEvent.type === "playing" ? video : null);
}
break;
}
@ -289,8 +290,7 @@ var CastingApps = {
},
_updatePageActionForVideo: function _updatePageActionForVideo(aVideo) {
// If playing, send the <video>, but if ended we send nothing to shutdown the pageaction
this._updatePageAction(aEvent.type == "playing" ? video : null);
this._updatePageAction(aVideo);
},
_updatePageAction: function _updatePageAction(aVideo) {