-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
32 lines (26 loc) · 942 Bytes
/
sample.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<link rel="stylesheet" href="css/style.css"/>
<script src="js/lib/require.js"></script>
<script src="js/config.js"></script>
<script>
require.config({baseUrl : 'js'});
//Uncomment this line to test the minified version
//require(['dist/jscal.min']);
//
require(['sample']);
</script>
</head>
<body>
<button id="perviousButton">Previous</button>
<span id="statusLabel"></span>
<button id="nextButton">Next</button>
<select id="timeZonePicker">
<option value="Europe/Berlin">Kiel</option>
<option value="America/New_York">New York</option>
<option value="localeventtime">Local Event Time</option>
</select>
<span id="loadingInProgress" style="display:none;">Loading in progress...</span>
<div id="calendarCollection" style="width:800px;"><!-- CALENDAR CONTENT --></div>
</body>
</html>