17 lines
296 B
JavaScript
17 lines
296 B
JavaScript
class Interface {
|
|
constructor(videoData) {
|
|
this.conf = videoData;
|
|
this.player = videoData.player;
|
|
}
|
|
|
|
injectUi() {
|
|
|
|
this.detectorDiv = document.createElement('div');
|
|
this.uiRoot = document.createElement('div');
|
|
this.detectorDiv.appendChild(this.uiRoot);
|
|
|
|
|
|
|
|
}
|
|
}
|