AddCalEvent icon indicating copy to clipboard operation
AddCalEvent copied to clipboard

Hotmail ics link updates

Open LaChucha opened this issue 7 years ago • 0 comments

Hi,

For anyone who's using this library, hotmail link to add event has changed: in AddCalEvent.js. Change from this: /* _getUrl_hotmail: function() { var data = this.options.data, url = 'http://calendar.live.com/calendar/calendar.aspx?rru=addevent'; url += '&location=' + encodeURIComponent(data.location); url += '&dtstart=' + this._getUTCTime(data.timeObj.start); url += '&dtend=' + this._getUTCTime(data.timeObj.end); url += '&subject=' + encodeURIComponent(data.title); url += '&body=' + encodeURIComponent(data.desc); return url; } */ To this: _getUrl_hotmail: function() { var data = this.options.data, url = 'https://outlook.live.com/owa/?path=/calendar/action/compose&rru=addevent'; url += '&location=' + encodeURIComponent(data.location); url += '&startdt=' + this._getUTCTime(data.timeObj.start); url += '&enddt=' + this._getUTCTime(data.timeObj.end); url += '&subject=' + encodeURIComponent(data.title); url += '&body=' + encodeURIComponent(data.desc); return url; }

LaChucha avatar Jan 23 '19 08:01 LaChucha