April 9 update

This commit is contained in:
George Frederick "Buzz" Beurling
2020-04-09 17:20:03 -04:00
parent 94509caf3c
commit 50abb9d909
57 changed files with 2635 additions and 854 deletions

View File

@@ -50,8 +50,10 @@
}
}
</script>
<script>
<script>
$('#test').html('Loading Start ...');
document.addEventListener('DOMContentLoaded', function() {
$('#test').html('DOM ContentLoaded');
var calendarEl = document.getElementById('public_calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
@@ -71,8 +73,9 @@
$('#schedulemodal').modal('toggle')
}
});
$('#test').html('Begin render');
calendar.render();
$('#test').html('Render Done');
});
</script>