aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/plyr.js
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2016-05-01 15:04:09 +1000
committerSam Potts <me@sampotts.me>2016-05-01 15:04:09 +1000
commit39a0a38d070c3c436b5f6b270b9d6406b0e43e06 (patch)
tree2e1f772f004d494e7be3feec10b010da1177a2a8 /src/js/plyr.js
parenta316514ca165a06ae3c4d3cf8caaf1a908cbc2db (diff)
downloadplyr-39a0a38d070c3c436b5f6b270b9d6406b0e43e06.tar.lz
plyr-39a0a38d070c3c436b5f6b270b9d6406b0e43e06.tar.xz
plyr-39a0a38d070c3c436b5f6b270b9d6406b0e43e06.zip
Bug fix for undefined progress bar
Diffstat (limited to 'src/js/plyr.js')
-rw-r--r--src/js/plyr.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/plyr.js b/src/js/plyr.js
index 1da3cbdc..98063995 100644
--- a/src/js/plyr.js
+++ b/src/js/plyr.js
@@ -1,6 +1,6 @@
// ==========================================================================
// Plyr
-// plyr.js v1.6.3
+// plyr.js v1.6.4
// https://github.com/selz/plyr
// License: The MIT License (MIT)
// ==========================================================================
@@ -2218,7 +2218,7 @@
progress.value = value;
}
// Object of progress + text element
- else {
+ else if (progress) {
if (progress.bar) {
progress.bar.value = value;
}