ultrawidify/src/ext/lib/Interface.js

13 lines
284 B
JavaScript
Raw Normal View History

2018-07-19 23:05:57 +02:00
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);
}
}