diff options
Diffstat (limited to 'demo/dist/demo.js')
-rw-r--r-- | demo/dist/demo.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/demo/dist/demo.js b/demo/dist/demo.js index 18e36ba5..90223a00 100644 --- a/demo/dist/demo.js +++ b/demo/dist/demo.js @@ -20382,7 +20382,7 @@ typeof navigator === "object" && (function () { // Sprite (for icons) loadSprite: true, iconPrefix: 'plyr', - iconUrl: 'https://cdn.plyr.io/3.5.8/plyr.svg', + iconUrl: 'https://cdn.plyr.io/3.5.9/plyr.svg', // Blank video (used to prevent errors on source change) blankVideo: 'https://cdn.plyr.io/static/blank.mp4', // Quality default @@ -21225,7 +21225,12 @@ typeof navigator === "object" && (function () { } // Set property synchronously to respect the call order - this.media.setAttribute('poster', poster); // Wait until ui is ready + this.media.setAttribute('poster', poster); // HTML5 uses native poster attribute + + if (this.isHTML5) { + return Promise.resolve(poster); + } // Wait until ui is ready + return ready.call(this) // Load image .then(function () { |