aboutsummaryrefslogtreecommitdiffstats
path: root/src/js
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2016-07-21 21:59:16 +1000
committerSam Potts <me@sampotts.me>2016-07-21 21:59:16 +1000
commite72a91de6e5a89d92c5e10a8c725df5d543c31e9 (patch)
tree3e0980b862bd97c68bab07a09429432b41304559 /src/js
parent57ad124ce837e1c5cde5663d32ea7c172dc59b26 (diff)
downloadplyr-e72a91de6e5a89d92c5e10a8c725df5d543c31e9.tar.lz
plyr-e72a91de6e5a89d92c5e10a8c725df5d543c31e9.tar.xz
plyr-e72a91de6e5a89d92c5e10a8c725df5d543c31e9.zip
Fix for seek issues introduced in v1.8.9
Diffstat (limited to 'src/js')
-rw-r--r--src/js/plyr.js6
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;