tardate / jquery.addtocalendar

jQuery UI widget that provides "Add to Calendar" functionality. Supports an extensible range of calendar services - desktop and web-based
MIT License
93 stars 35 forks source link

Outlook.com accepts location & description. #15

Open JamoCA opened 8 years ago

JamoCA commented 8 years ago

For the "calendar.live.com" entry, description was being passed. It just needs to be included in the return URL as listed below:

return "http://calendar.live.com/calendar/calendar.aspx?rru=addevent" +
"&dtstart=" + eventDetails.start +
"&dtend=" + eventDetails.end +
"&summary=" + eventDetails.title +
"&location=" + eventDetails.location +
"&description=" + eventDetails.details;
}