diff options
author | Sam Potts <sam@potts.es> | 2018-04-17 22:52:46 +1000 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2018-04-17 22:52:46 +1000 |
commit | 7f079e0ec3abbc9909807a1d9da60e18099a48f0 (patch) | |
tree | f321aaad4aa31de7b1a66bebd191e192a3c2a484 /dist/plyr.js | |
parent | 46fe3eecff478a80636f538a9f843bb0f21f4802 (diff) | |
download | plyr-7f079e0ec3abbc9909807a1d9da60e18099a48f0.tar.lz plyr-7f079e0ec3abbc9909807a1d9da60e18099a48f0.tar.xz plyr-7f079e0ec3abbc9909807a1d9da60e18099a48f0.zip |
Fix for `playing` false positive (fixes #898)
Diffstat (limited to 'dist/plyr.js')
-rw-r--r-- | dist/plyr.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/plyr.js b/dist/plyr.js index 660e4a39..a43c0141 100644 --- a/dist/plyr.js +++ b/dist/plyr.js @@ -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)); } /** |