improved main dashboard

This commit is contained in:
lukas-heiligenbrunner
2019-11-11 16:33:05 +01:00
parent 6afaad0d33
commit 90f95ca1f5
37 changed files with 314 additions and 928 deletions

View File

@ -55,4 +55,15 @@ $(document).ready(function () {
}
});
var date_input = $('input[name="date"]'); //our date input has the name "date"
var container = $('.bootstrap-iso form').length > 0 ? $('.bootstrap-iso form').parent() : "body";
var options = {
format: 'mm/dd/yyyy',
container: container,
todayHighlight: true,
autoclose: true,
};
date_input.datepicker(options);
});