2010-09-19 07:54:35 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2009-12-22 04:19:41 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2010-09-19 07:54:35 +02:00
|
|
|
<script type='text/javascript' src='../src/_loader.js?debug'></script>
|
2009-12-22 04:19:41 +01:00
|
|
|
<script type='text/javascript'>
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
$('#calendar').fullCalendar({
|
|
|
|
header: {
|
|
|
|
left: 'prev,next today',
|
|
|
|
center: 'title',
|
2009-12-22 09:41:38 +01:00
|
|
|
right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
|
2009-12-22 04:19:41 +01:00
|
|
|
},
|
|
|
|
defaultView: 'agendaWeek', // month view also looked scrunched
|
|
|
|
aspectRatio: 0
|
|
|
|
});
|
|
|
|
|
|
|
|
// shouldnt allow aspectRatios to *actually* go under .5
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<style type='text/css'>
|
|
|
|
|
|
|
|
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>
|