49 lines
1 KiB
HTML
49 lines
1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link href='../../dist/fullcalendar.css' rel='stylesheet' />
|
||
|
<link href='../../dist/fullcalendar.print.css' rel='stylesheet' media='print' />
|
||
|
<script src='../../node_modules/jquery/dist/jquery.js'></script>
|
||
|
<script src='../../node_modules/moment/moment.js'></script>
|
||
|
<script src='../../dist/fullcalendar.js'></script>
|
||
|
<script>
|
||
|
|
||
|
$(document).ready(function() {
|
||
|
|
||
|
$('#calendar').fullCalendar({
|
||
|
//year: 2009,
|
||
|
//month: 10,
|
||
|
//date: 22,
|
||
|
//initialView: 'week', // error also occured with month view
|
||
|
editable: true,
|
||
|
events: "../demos/json-events.php"
|
||
|
});
|
||
|
|
||
|
$('#calendar').fullCalendar('option', 'height', $(window).height()-80);
|
||
|
// shouldn't throw an error
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
</script>
|
||
|
<style>
|
||
|
|
||
|
body {
|
||
|
margin-top: 40px;
|
||
|
text-align: center;
|
||
|
font-size: 13px;
|
||
|
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
|
||
|
}
|
||
|
|
||
|
#calendar {
|
||
|
width: 900px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id='calendar'></div>
|
||
|
</body>
|
||
|
</html>
|