mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-06-27 16:10:13 +08:00
30 lines
559 B
HTML
30 lines
559 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel='stylesheet' href='lib/fancybox/jquery.fancybox-1.3.4.css' />
|
|
<script src='lib/jquery-1.4.3.min.js'></script>
|
|
<script src='lib/fancybox/jquery.fancybox-1.3.4.js'></script>
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
$('#fullcalendar-link').fancybox({
|
|
width: 1100,
|
|
height: 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>
|