From e72a91de6e5a89d92c5e10a8c725df5d543c31e9 Mon Sep 17 00:00:00 2001 From: Sam Potts Date: Thu, 21 Jul 2016 21:59:16 +1000 Subject: Fix for seek issues introduced in v1.8.9 --- src/js/plyr.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/js') diff --git a/src/js/plyr.js b/src/js/plyr.js index 4afc78a6..a9c923f7 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -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; -- cgit v1.2.3