specifies the text of the event in the Google Maps popup marker
start | Date | the date when an event is scheduled to begin |
end | Date | the date when an event is scheduled to be completed |
event | object | the event object |
scheduler.templates.marker_text = function(start,end,ev){
return "<div><b>" + ev.text + "</b><br/><br/>" + (ev.event_location || '') +
"<br/><br/>" + scheduler.templates.marker_date(start) + " - " +
scheduler.templates.marker_date(end) + "</div>";
};
The template requires the map_view plugin to be activated.