Fix typo's

This commit is contained in:
ferdiemmen 2018-01-29 22:45:46 +01:00
parent c4eb4c97ac
commit afd695cb39
2 changed files with 3 additions and 3 deletions

2
dist/plyr.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -26,13 +26,13 @@ class Ads {
return; return;
} }
// Check if the Google IMA3 SDK is loaded or load ourselves. // Check if the Google IMA3 SDK is loaded or load it ourselves
if (!utils.is.object(window.google)) { if (!utils.is.object(window.google)) {
utils.loadScript(player.config.urls.googleIMA.api, () => { utils.loadScript(player.config.urls.googleIMA.api, () => {
this.ready(); this.ready();
}, () => { }, () => {
// Script failed to load or is blocked. // Script failed to load or is blocked
this.blocked = true; this.blocked = true;
this.player.debug.log('Ads error: Google IMA SDK failed to load'); this.player.debug.log('Ads error: Google IMA SDK failed to load');
}); });