Skip to content

Commit d7ab901

Browse files
author
Abdul Ghafoor
committed
Fixed Add to Microsoft Live Calendar
- Change URL to : https://outlook.live.com/owa/?rru=addevent - Change summary to subject - Change description to body - Change dtstart to startdt - Change dtend to enddt
1 parent a0da923 commit d7ab901

File tree

5 files changed

+10935
-19
lines changed

5 files changed

+10935
-19
lines changed

dist/vue-add-to-calendar.common.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* vue-add-to-calendar v1.0.4
3-
* (c) 2017 nicolasbeauvais
3+
* (c) 2019 nicolasbeauvais
44
* Released under the MIT License.
55
*/
66
'use strict';
@@ -34,14 +34,14 @@ var calendars = {
3434
},
3535

3636
microsoft: {
37-
url: 'http://calendar.live.com/calendar/calendar.aspx?rru=addevent',
37+
url: 'https://outlook.live.com/owa/?rru=addevent',
3838
parameters: function parameters$1 (title, location, details, start, end) {
3939
return {
40-
summary: title,
40+
subject: title,
4141
location: location,
42-
description: details,
43-
dtstart: start,
44-
dtend: end
42+
body: details,
43+
startdt: start,
44+
enddt: end
4545
};
4646
}
4747
}

dist/vue-add-to-calendar.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* vue-add-to-calendar v1.0.4
3-
* (c) 2017 nicolasbeauvais
3+
* (c) 2019 nicolasbeauvais
44
* Released under the MIT License.
55
*/
66
(function (global, factory) {
@@ -38,14 +38,14 @@ var calendars = {
3838
},
3939

4040
microsoft: {
41-
url: 'http://calendar.live.com/calendar/calendar.aspx?rru=addevent',
41+
url: 'https://outlook.live.com/owa/?rru=addevent',
4242
parameters: function parameters$1 (title, location, details, start, end) {
4343
return {
44-
summary: title,
44+
subject: title,
4545
location: location,
46-
description: details,
47-
dtstart: start,
48-
dtend: end
46+
body: details,
47+
startdt: start,
48+
enddt: end
4949
};
5050
}
5151
}

dist/vue-add-to-calendar.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)