-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 2.54 KB
/
index.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Test JS Doctolib</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div id="calendar-wrapper" style="height: 600px;"></div>
<script src="js/calendar.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
new Calendar('#calendar-wrapper', new Date(2014, 9, 6),
[
{
start_date: new Date(2014, 9, 7, 9, 30)
, end_date: new Date(2014, 9, 7, 8, 30)
, title: 'John Doe'
}
, {
start_date: new Date(2014, 9, 7, 9, 30)
, end_date: new Date(2014, 9, 7, 11, 30)
, title: 'Jane Doe'
}
, {
start_date: new Date(2014, 9, 7, 12, 00)
, end_date: new Date(2014, 9, 7, 13, 30)
, title: 'Jane Doe'
}
, {
start_date: new Date(2014, 9, 8, 9, 30)
, end_date: new Date(2014, 9, 8, 14, 0)
, title: 'Al Di Meola'
}
, {
start_date: new Date(2014, 9, 8, 2, 30)
, end_date: new Date(2014, 9, 8, 9, 0)
, title: 'Al Di Meola 2'
}
, {
start_date: new Date(2014, 9, 8, 1, 00)
, end_date: new Date(2014, 9, 8, 20, 0)
, title: 'Al Di Meola 2'
}
, {
start_date: new Date(2014, 9, 10, 12, 0)
, end_date: new Date(2014, 9, 10, 15, 30)
, title: 'John McLaughlin'
}
, {
start_date: new Date(2014, 9, 10, 9, 15)
, end_date: new Date(2014, 9, 10, 12, 30)
, title: 'Paco De Lucia'
}
, {
start_date: new Date(2014, 9, 10, 15, 0)
, end_date: new Date(2014, 9, 10, 18, 30)
, title: 'Django Reinhardt'
}
]
);
</script>
</body>
</html>