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:
parent
547493024a
commit
af129fb92d
7 changed files with 251 additions and 44 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue