aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/plyr.js
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2016-06-26 08:34:36 +1000
committerSam Potts <me@sampotts.me>2016-06-26 08:34:36 +1000
commit7e7508ca821b930fc132370d6d490e9c16d983a4 (patch)
treeeb2345e6edf8cc1057064890eeda84b03315d7e5 /src/js/plyr.js
parent095d100ba44e828f82fb432c5d47fb89a6eaaaf4 (diff)
downloadplyr-7e7508ca821b930fc132370d6d490e9c16d983a4.tar.lz
plyr-7e7508ca821b930fc132370d6d490e9c16d983a4.tar.xz
plyr-7e7508ca821b930fc132370d6d490e9c16d983a4.zip
Fixed overflow issues (fixes #286)
Diffstat (limited to 'src/js/plyr.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 b7f89258..fa66dca8 100644
--- a/src/js/plyr.js
+++ b/src/js/plyr.js
@@ -1,6 +1,6 @@
// ==========================================================================
// Plyr
-// plyr.js v1.8.4
+// plyr.js v1.8.5
// 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.4/plyr.svg',
+ iconUrl: 'https://cdn.plyr.io/1.8.5/plyr.svg',
clickToPlay: true,
hideControls: true,
showPosterOnEnd: false,
@@ -191,7 +191,7 @@
if ((navigator.appVersion.indexOf('Windows NT') !== -1) && (navigator.appVersion.indexOf('rv:11') !== -1)) {
isIE = true;
name = 'IE';
- fullVersion = '11;';
+ fullVersion = '11';
}
// MSIE
else if ((verOffset = ua.indexOf('MSIE')) !== -1) {