Files
fullcalendar/tests/issue_477_event_width.html
T
2013-03-11 02:21:39 -07:00

50 lines
1002 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src='../build/loader.js' data-debug='true'></script>
<script>
$(document).ready(function() {
// need to change to GMT+2 to recreate this bug!!!!
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
},
year: 2010,
month: 4,
firstDay: 1,
events: [
{"id":"1","title":"testcase 1 BAD","start":"1272822975","end":"1272837609","allDay":false}
//{"id":"2","title":"testcase 2 GOOD","start":"1272822975","end":"1272837809","allDay":false},
//{"id":"3","title":"testcase 3 GOOD too","start":"1272822975","end":"1272837609","allDay":true}
]
});
});
</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>