daniel-stoian-lgp on drawingComponent
WRO-4551:Update the node versio… WRO-4059: Fix lint warnings fro… Merge remote-tracking branch 'o… (compare)
stanca-pop-lgp on WRO-582
undid editor change (compare)
dongsuwon on WRN-19401
* Add explanation for ui/ss tes… (compare)
stanca-pop-lgp on WRO-582
Update .travis.yml Revert "Update .travis.yml" Th… WRO-266: Unskip one of `Skinnab… and 4 more (compare)
dongsuwon on WRN-19401
* Fix typo. Enact-DCO-1.0-Sign… (compare)
vladut-clapou-lgp on WRO-4821
WRO-3893: Fixed React 18 Suspen… WRO-4551:Update the node versio… Merge branch 'develop' of https… (compare)
dongsuwon on WRN-19401
* Add new line in contribution … (compare)
functional: true
when define kind component then it will return a functional component suitable for use with React hooks.render
in kindHi I already posted this issue on github but hope some one here might help I have am having an issue to make videojs to work properly as part of the video player.
here is my setup code <VideoPlayer id="videoplay" ></VideoPlayer>
and in component did mount I have `ComponentDidMount() {
var options = {
sources: [{
src: 'http://demo.unified-streaming.com/video/tears-of-steel/tears-of-steel.ism/.m3u8',
type: 'application/x-mpegURL'
}]
};
this.player = videojs('videoplay', options, function onPlayerReady() {
const video = document.getElementById('videoplay');
});
$('#overlays-wrap').appendTo($('#videoplay'));
} `