why for TODAY ? and not for current MONTH ?
getDon:
getDom: function() {
var self = this;
var wrapper = document.createElement("div");
// tell MM to call and get our content
Log.log("LOOK >>>>>>" + JSON.stringify(this.active_birthdays)) // add this line
self.updateDom(); // before this line in the notification code..
for(var birthday of Object.keys(this.active_birthdays)) {
for(var name of this.active_birthdays[birthday]) {
var m = document.createElement("div");
Log.log("BIRTHDAY >> " + birthday);
Log.log("NAME >> " + name);
m.innerText = birthday + " " + name;
wrapper.appendChild(m);
}
}
// pass the created content back to MM to add to DOM.
return wrapper;
}