diff options
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/plyr.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js/plyr.js b/src/js/plyr.js index d86a2ecb..5c5ae28e 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -49,6 +49,7 @@ hideControls: true, showPosterOnEnd: false, disableContextMenu: true, + svg4everybodyFix: false, keyboardShorcuts: { focused: true, global: false @@ -748,7 +749,7 @@ function _getIconUrl() { return { url: config.iconUrl, - absolute: (config.iconUrl.indexOf("http") === 0) || plyr.browser.isIE + absolute: (config.iconUrl.indexOf("http") === 0) || (plyr.browser.isIE && !config.svg4everybodyFix) // If you're using svg4everybody you don't need absolute paths }; } |