diff options
author | Sam Potts <me@sampotts.me> | 2016-07-21 21:59:16 +1000 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2016-07-21 21:59:16 +1000 |
commit | e72a91de6e5a89d92c5e10a8c725df5d543c31e9 (patch) | |
tree | 3e0980b862bd97c68bab07a09429432b41304559 /src | |
parent | 57ad124ce837e1c5cde5663d32ea7c172dc59b26 (diff) | |
download | plyr-e72a91de6e5a89d92c5e10a8c725df5d543c31e9.tar.lz plyr-e72a91de6e5a89d92c5e10a8c725df5d543c31e9.tar.xz plyr-e72a91de6e5a89d92c5e10a8c725df5d543c31e9.zip |
Fix for seek issues introduced in v1.8.9
Diffstat (limited to 'src')
-rw-r--r-- | src/js/plyr.js | 6 |
1 files changed, 3 insertions, 3 deletions
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; |