ovenplayer
Version:
OvenPlayer is Open-Source HTML5 Player. OvenPlayer supports WebRTC Signaling from OvenMediaEngine for Sub-Second Latency Streaming.
17 lines (15 loc) • 581 B
JavaScript
/**
* Created by hoho on 2018. 7. 20..
*/
const ViewTemplate = function (uiText, id) {
return `<div class="ovenplayer op-wrapper" tabindex="-1" ${id ? `id = "${id}"` : ``}>` +
`<div class="op-ratio"></div>` +
`<div class="op-player op-clear">` +
`<div class="op-core-ui-wrapper op-clear">` +
`<div class="op-media-element-container op-clear"></div>` +
`<div class="op-ui op-clear"></div>` +
`</div>` +
`</div>` +
`</div>`
};
export default ViewTemplate;