@sdetweil
sorry I only updated it on github
notificationReceived: function (notification, payload, sender) {
var self = this;
switch (notification) {
case "DOM_OBJECTS_CREATED":
var timer = setInterval(() => {
//this.updateDom()
self.sendSocketNotification("DO_YOUR_JOB", self.count);
console.log(`self.sendSocketNotification("DO_YOUR_JOB", this.count)`, self.sendSocketNotification("DO_YOUR_JOB", self.count))
self.sendSocketNotification("DO_YOUR_JOB", self.count)
self.subElementUp.innerHTML = "Count UP:" + self.count
self.count++
}, 1000)
break
}
},