dbdbafd35d
- eventAfterRender - getView - displaying in iframe (also added tests) - render method now adjusts calendar's size too - day-of-week classnames fixed when firstDay=1 - leave more space on side event events in agenda views - "T" optional in ISO8601 events
32 lines
989 B
HTML
32 lines
989 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta http-equiv="imagetoolbar" content="no" />
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.2.6.css" media="screen" />
|
|
<script type="text/javascript" src="fancybox/jquery.fancybox-1.2.6.pack.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
$('#fullcalendar-link').fancybox({
|
|
frameWidth: 1100,
|
|
frameHeight: 800
|
|
});
|
|
});
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
|
|
<h1>FancyBox <em>v1.2.6</em></h1>
|
|
|
|
<p>
|
|
<a id='fullcalendar-link' class="iframe" href="plain.html">Open a FullCalendar</a>
|
|
</p>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|