aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/plyr.js
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2018-05-19 11:26:05 +1000
committerSam Potts <sam@potts.es>2018-05-19 11:26:05 +1000
commit1bab0d07b5b22230aab6e68105c8fc574add31e3 (patch)
tree34866e67f21a3e14c6874313ae8787795db96605 /src/js/plyr.js
parent34401de3d03e61eb7d1a04f6f0b7599e7ce9cd93 (diff)
parent602353f4d953c5b083ee22fd0ee479ad605de281 (diff)
downloadplyr-1bab0d07b5b22230aab6e68105c8fc574add31e3.tar.lz
plyr-1bab0d07b5b22230aab6e68105c8fc574add31e3.tar.xz
plyr-1bab0d07b5b22230aab6e68105c8fc574add31e3.zip
Merge branch 'master' into develop
Diffstat (limited to 'src/js/plyr.js')
-rw-r--r--src/js/plyr.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/js/plyr.js b/src/js/plyr.js
index c2a1d6e3..bed09827 100644
--- a/src/js/plyr.js
+++ b/src/js/plyr.js
@@ -1,6 +1,6 @@
// ==========================================================================
// Plyr
-// plyr.js v3.3.6
+// plyr.js v3.3.7
// https://github.com/sampotts/plyr
// License: The MIT License (MIT)
// ==========================================================================
@@ -55,6 +55,7 @@ class Plyr {
this.config = utils.extend(
{},
defaults,
+ Plyr.defaults,
options || {},
(() => {
try {
@@ -1269,4 +1270,6 @@ class Plyr {
}
}
+Plyr.defaults = utils.cloneDeep(defaults);
+
export default Plyr;