1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update video player osd

This commit is contained in:
Luke Pulverenti 2015-05-13 23:24:25 -04:00
parent 547493024a
commit af129fb92d
7 changed files with 251 additions and 44 deletions

View file

@ -467,7 +467,14 @@
clearProgressInterval();
$(element).off('ended.playbackstopped').off('ended.playnext').one("play", function () {
$(element).off('ended.playbackstopped').off('ended.playnext').one("loadedmetadata.mediaplayerevent", function (e) {
// The IE video player won't autoplay without this
if ($.browser.msie && self.currentItem.MediaType == "Video") {
this.play();
}
}).one("play", function () {
self.updateCanClientSeek(this);