Add player integration code removed from the dailymotion js sdk

Restores https://github.com/dailymotion/dailymotion-sdk-js commit 75b4102
This commit is contained in:
Honore Doktorr 2024-05-11 14:42:08 -04:00 committed by Calvin Montgomery
parent 4c437efb5d
commit adc0ea27a9
1 changed files with 6 additions and 1 deletions

View File

@ -18,7 +18,12 @@ window.DailymotionPlayer = class DailymotionPlayer extends Player
if quality != 'auto'
params.quality = quality
@dm = DM.player('ytapiplayer',
@element = DM.$('ytapiplayer')
if not @element or @element.nodeType != Node.ELEMENT_NODE
throw new Error("Invalid player element in DailymotionPlayer(), requires an existing HTML element: " + @element)
if DM.Player._INSTANCES[@element.id] != undefined
@element = DM.Player.destroy(@element.id)
@dm = DM.Player.create(@element,
video: data.id
width: parseInt(VWIDTH, 10)
height: parseInt(VHEIGHT, 10)