-
Notifications
You must be signed in to change notification settings - Fork 6
Description
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;
}