Bug fix for undefined progress bar

This commit is contained in:
Sam Potts
2016-05-01 15:04:09 +10:00
parent a316514ca1
commit 39a0a38d07
5 changed files with 13 additions and 10 deletions

View File

@ -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;
}