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