Skip to content

Hotmail ics link updates #4

@LaChucha

Description

@LaChucha

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;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions