mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
CR/LF correction
This commit is contained in:
99
front/lib/fullcalendar-scheduler/demos/json.html
Normal file
99
front/lib/fullcalendar-scheduler/demos/json.html
Normal file
@@ -0,0 +1,99 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8' />
|
||||
<link href='../lib/fullcalendar.min.css' rel='stylesheet' />
|
||||
<link href='../lib/fullcalendar.print.min.css' rel='stylesheet' media='print' />
|
||||
<link href='../scheduler.min.css' rel='stylesheet' />
|
||||
<script src='../lib/moment.min.js'></script>
|
||||
<script src='../lib/jquery.min.js'></script>
|
||||
<script src='../lib/fullcalendar.min.js'></script>
|
||||
<script src='../scheduler.min.js'></script>
|
||||
<script>
|
||||
|
||||
$(function() { // document ready
|
||||
|
||||
$('#calendar').fullCalendar({
|
||||
now: '2018-04-07',
|
||||
editable: true, // enable draggable events
|
||||
aspectRatio: 1.8,
|
||||
scrollTime: '00:00', // undo default 6am scrollTime
|
||||
header: {
|
||||
left: 'today prev,next',
|
||||
center: 'title',
|
||||
right: 'timelineDay,timelineThreeDays,agendaWeek,month'
|
||||
},
|
||||
defaultView: 'timelineDay',
|
||||
views: {
|
||||
timelineThreeDays: {
|
||||
type: 'timeline',
|
||||
duration: { days: 3 }
|
||||
}
|
||||
},
|
||||
resourceLabelText: 'Rooms',
|
||||
|
||||
resources: { // you can also specify a plain string like 'json/resources.json'
|
||||
url: 'json/resources.json',
|
||||
error: function() {
|
||||
$('#script-warning').show();
|
||||
}
|
||||
},
|
||||
|
||||
events: { // you can also specify a plain string like 'json/events.json'
|
||||
url: 'json/events.json',
|
||||
error: function() {
|
||||
$('#script-warning').show();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
<style>
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
#script-warning {
|
||||
display: none;
|
||||
background: #eee;
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding: 0 10px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: red;
|
||||
}
|
||||
|
||||
#loading {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
#calendar {
|
||||
max-width: 900px;
|
||||
margin: 50px auto;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id='script-warning'>
|
||||
This page should be running from a webserver, to allow fetching from the <code>json/</code> directory.
|
||||
</div>
|
||||
|
||||
<div id='loading'>loading...</div>
|
||||
|
||||
<div id='calendar'></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user