Skip to content

Instantly share code, notes, and snippets.

View nicucalcea's full-sized avatar
🍺

Nicu Calcea nicucalcea

🍺
View GitHub Profile
export class Datawrapper {
constructor(id, containerName) {
this.id = id;
this.viz = undefined;
this.containerName = containerName;
this.container = document.getElementById(containerName);
this.observer = null;
this.listeners = {};
this.setupObserver();