Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 5247203

Browse files
committed
quotes
1 parent 4631997 commit 5247203

File tree

1 file changed

+45
-32
lines changed

1 file changed

+45
-32
lines changed

examples/events.js

+45-32
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,70 @@
11
export default [
22
{
3-
"title": "All Day Event",
4-
"allDay": true,
5-
"start": new Date(2015, 3, 0),
6-
"end": new Date(2015, 3, 0)
3+
'title': 'All Day Event',
4+
'allDay': true,
5+
'start': new Date(2015, 3, 0),
6+
'end': new Date(2015, 3, 0)
77
},
88
{
9-
"title": "Long Event",
10-
"start": new Date(2015, 3, 7),
11-
"end": new Date(2015, 3, 10),
9+
'title': 'Long Event',
10+
'start': new Date(2015, 3, 7),
11+
'end': new Date(2015, 3, 10)
1212
},
13+
1314
{
14-
"title": "Some Event",
15-
"start": new Date(2015, 3, 9, 0, 0, 0),
16-
"end": new Date(2015, 3, 9, 0, 0, 0),
15+
'title': 'DTS STARTS',
16+
'start': new Date(2016, 2, 13, 0, 0, 0),
17+
'end': new Date(2016, 2, 20, 0, 0, 0)
1718
},
19+
1820
{
19-
"title": "Conference",
20-
"start": new Date(2015, 3, 11),
21-
"end": new Date(2015, 3, 13),
21+
'title': 'DTS ENDS',
22+
'start': new Date(2016, 10, 6, 0, 0, 0),
23+
'end': new Date(2016, 10, 13, 0, 0, 0)
24+
},
25+
26+
{
27+
'title': 'Some Event',
28+
'start': new Date(2015, 3, 9, 0, 0, 0),
29+
'end': new Date(2015, 3, 9, 0, 0, 0)
30+
},
31+
{
32+
'title': 'Conference',
33+
'start': new Date(2015, 3, 11),
34+
'end': new Date(2015, 3, 13),
2235
desc: 'Big conference for important people'
2336
},
2437
{
25-
"title": "Meeting",
26-
"start": new Date(2015, 3, 12, 10, 30, 0, 0),
27-
"end": new Date(2015, 3, 12, 12, 30, 0, 0),
38+
'title': 'Meeting',
39+
'start': new Date(2015, 3, 12, 10, 30, 0, 0),
40+
'end': new Date(2015, 3, 12, 12, 30, 0, 0),
2841
desc: 'Pre-meeting meeting, to prepare for the meeting'
2942
},
3043
{
31-
"title": "Lunch",
32-
"start":new Date(2015, 3, 12, 12, 0, 0, 0),
33-
"end": new Date(2015, 3, 12, 13, 0, 0, 0),
44+
'title': 'Lunch',
45+
'start':new Date(2015, 3, 12, 12, 0, 0, 0),
46+
'end': new Date(2015, 3, 12, 13, 0, 0, 0),
3447
desc: 'Power lunch'
3548
},
3649
{
37-
"title": "Meeting",
38-
"start":new Date(2015, 3, 12,14, 0, 0, 0),
39-
"end": new Date(2015, 3, 12,15, 0, 0, 0)
50+
'title': 'Meeting',
51+
'start':new Date(2015, 3, 12,14, 0, 0, 0),
52+
'end': new Date(2015, 3, 12,15, 0, 0, 0)
4053
},
4154
{
42-
"title": "Happy Hour",
43-
"start":new Date(2015, 3, 12, 17, 0, 0, 0),
44-
"end": new Date(2015, 3, 12, 17, 30, 0, 0),
45-
desc: "Most important meal of the day"
55+
'title': 'Happy Hour',
56+
'start':new Date(2015, 3, 12, 17, 0, 0, 0),
57+
'end': new Date(2015, 3, 12, 17, 30, 0, 0),
58+
desc: 'Most important meal of the day'
4659
},
4760
{
48-
"title": "Dinner",
49-
"start":new Date(2015, 3, 12, 20, 0, 0, 0),
50-
"end": new Date(2015, 3, 12, 21, 0, 0, 0)
61+
'title': 'Dinner',
62+
'start':new Date(2015, 3, 12, 20, 0, 0, 0),
63+
'end': new Date(2015, 3, 12, 21, 0, 0, 0)
5164
},
5265
{
53-
"title": "Birthday Party",
54-
"start":new Date(2015, 3, 13, 7, 0, 0),
55-
"end": new Date(2015, 3, 13, 10, 30, 0)
66+
'title': 'Birthday Party',
67+
'start':new Date(2015, 3, 13, 7, 0, 0),
68+
'end': new Date(2015, 3, 13, 10, 30, 0)
5669
}
5770
]

0 commit comments

Comments
 (0)