-
Notifications
You must be signed in to change notification settings - Fork 4
/
cgpp2018.js
37 lines (36 loc) · 1.14 KB
/
cgpp2018.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$(document).ready(function() {
$('#calendar').fullCalendar({
events: [
{
title : 'Collaboration and Exploration',
start : '2018-01-25T16:30:00',
end : '2018-01-25T18:15:00',
allday : false
},
{
title : 'Collaboration and Exploration 2',
start : '2018-02-01T16:30:00',
end : '2018-02-01T18:15:00',
allday : false
},
{
title : 'Collaboration and Exploration 3',
start : '2018-02-08T16:30:00',
end : '2018-02-08T18:15:00',
allday : false
},
{
title : 'Wormhole Traversals',
start : '2018-02-15T16:30:00',
end : '2018-02-15T18:15:00',
allday : false
},
{
title : 'D3 Workshop',
start : '2018-02-22T16:30:00',
end : '2018-02-22T18:15:00',
allday : false
}
]
});
});