fixed switching to large video from FF on safari

This commit is contained in:
isymchych 2015-11-19 14:32:07 +02:00
parent 236c4bb37c
commit 19d9c0be50
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ SmallVideo.prototype.selectVideoElement = function () {
} else { } else {
return $('#' + this.videoSpanId + return $('#' + this.videoSpanId +
(this.isLocal ? '>>' : '>') + (this.isLocal ? '>>' : '>') +
videoElem + '>param[value="video"]').parent(); videoElem + '>param[value="video"]').first().parent();
} }
}; };