Fix for playing false positive (fixes #898)

This commit is contained in:
Sam Potts
2018-04-17 22:52:46 +10:00
parent 46fe3eecff
commit 7f079e0ec3
15 changed files with 15 additions and 12 deletions

2
dist/plyr.js vendored
View File

@ -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));
}
/**