Fix for seek issues introduced in v1.8.9

This commit is contained in:
Sam Potts
2016-07-21 21:59:16 +10:00
parent 57ad124ce8
commit e72a91de6e
5 changed files with 12 additions and 9 deletions

View File

@ -1,6 +1,6 @@
// ==========================================================================
// Plyr
// plyr.js v1.8.9
// plyr.js v1.8.10
// https://github.com/selz/plyr
// License: The MIT License (MIT)
// ==========================================================================
@ -44,7 +44,7 @@
displayDuration: true,
loadSprite: true,
iconPrefix: 'plyr',
iconUrl: 'https://cdn.plyr.io/1.8.9/plyr.svg',
iconUrl: 'https://cdn.plyr.io/1.8.10/plyr.svg',
clickToPlay: true,
hideControls: true,
showPosterOnEnd: false,
@ -573,7 +573,7 @@
// Check variable types
var _is = {
object: function(input) {
return input !== null && typeof(input) === 'object' && input.constructor === Object;
return input !== null && typeof(input) === 'object';
},
array: function(input) {
return input !== null && typeof(input) === 'object' && input.constructor === Array;