-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<link href="static/css/jquery-ui.min.css" rel='stylesheet'/>
<link href="static/css/fullcalendar.css" rel='stylesheet'/>
<link href="static/css/fullcalendar.print.css" rel='stylesheet' media='print'/>
<link href="static/css/bootstrapmodal.css" rel='stylesheet'/>
<div id='bootstrapModalFullCalendar'></div>
<script src="static/javascript/moment.min.js"></script>
<script src="static/javascript/jquery.min.js"></script>
<script src="static/javascript/fullcalendar.min.js"></script>
<script src="static/javascript/bootstrapmodal.min.js"></script>
<script>
$(document).ready(function() {
var url = 'http://localhost/calendar/events.html';
$('#bootstrapModalFullCalendar').fullCalendar({
events: url,
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
},
eventLimit: true,
eventClick: function(event, jsEvent, view) {
window.location = event.url;
}
});
});
</script>
</body>
</html>