Fix for playing
false positive (fixes #898)
This commit is contained in:
2
dist/plyr.js
vendored
2
dist/plyr.js
vendored
@ -7358,7 +7358,7 @@ var Plyr = function () {
|
||||
}, {
|
||||
key: 'playing',
|
||||
get: function get$$1() {
|
||||
return Boolean(!this.paused && !this.ended && (this.isHTML5 ? this.media.readyState > 2 : true));
|
||||
return Boolean(this.ready && !this.paused && !this.ended && (this.isHTML5 ? this.media.readyState > 2 : true));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user