This commit is contained in:
Thoscellen
2020-05-16 14:48:37 +02:00
commit bf97688639
231 changed files with 195771 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// JavaScript source code
$(function () {
//init
$('#AddVisitForm').hide(); // Hidden on load
//$('#today').
//show and hide
$('#ShowAddVisitForm').on('click', function () {
$('#AddVisitForm').show(400);
$('#ShowAddVisitForm').parent().parent().hide(400);
});
$('#HideAddVisitForm').on('click', function () {
$('#ShowAddVisitForm').parent().parent().show(400);
$('#AddVisitForm').hide(400);
})
});