event: eventData
+ times: ({start,end,serverKey} = e for e in events)
+ }), true)
+ .style("border","1px solid #EEE")
+ .style("border-radius","3px")
+ .style("padding","10px")
+
+ eventInfo = block.appendNode("div")
+ .attr("class","event-container")
+ .style("padding","0 5px")
+
+ eventInfo.appendNode("div")
+ .attr("class","event-title")
+ .appendText(eventData.title)
+ .style("font-weight","bold")
+ .style("font-size","18px")
+ eventInfo.appendNode("div")
+ .attr("class","event-location")
+ .appendText(eventData.location)
+ eventInfo.appendNode("div")
+ .attr("class","event-description")
+ .style("font-size","13px")
+ .appendText(eventData.description)
+ eventInfo.appendNode("span")
+ .appendText("Click on a time to schedule instantly:")
+ .style("font-size","13px")
+ .style("color","#AAA")
+
+ daysContainer = block.appendNode("div")
+ .attr("class","days")
+ .style("display","flex")
+ .style("flex-wrap","wrap")
+ .style("padding","10px 0")
+
+