diff options
author | Sam Potts <sam@potts.es> | 2018-05-06 01:32:51 +1000 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2018-05-06 01:32:51 +1000 |
commit | 165515009266a5dc0b625cef26cf6ba1a80bb12e (patch) | |
tree | ac915eb715c418a75d4bd1c185cd290c5e051667 /src/js/plyr.js | |
parent | ceb6c9a10058c2ab663bd588e14333ac3564bff6 (diff) | |
download | plyr-165515009266a5dc0b625cef26cf6ba1a80bb12e.tar.lz plyr-165515009266a5dc0b625cef26cf6ba1a80bb12e.tar.xz plyr-165515009266a5dc0b625cef26cf6ba1a80bb12e.zip |
v3.3.5
Diffstat (limited to 'src/js/plyr.js')
-rw-r--r-- | src/js/plyr.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/js/plyr.js b/src/js/plyr.js index be32aa6d..acf1ce19 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -1,6 +1,6 @@ // ========================================================================== // Plyr -// plyr.js v3.3.3 +// plyr.js v3.3.5 // https://github.com/sampotts/plyr // License: The MIT License (MIT) // ========================================================================== @@ -396,7 +396,8 @@ class Plyr { */ stop() { if (this.isHTML5) { - this.media.load(); + this.pause(); + this.restart(); } else if (utils.is.function(this.media.stop)) { this.media.stop(); } |