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

@@ -2,7 +2,7 @@
<div class="container mt-lg-5 pt-md-5">
<div class="row mt-sm-5 pt-md-5">
<div class="col-md-6 ml-auto mr-auto text-center">
<h1>
<h1 id="test">
{{App\Config::getData('escadron_name_full')}}
</h1>
<a class="badge badge-primary edit-btn" href="/admin/public/edit/escadron_name_full" style="display: none;">

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>