mirror of https://github.com/calzoneman/sync.git
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:
parent
4c437efb5d
commit
adc0ea27a9
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue