mirror of
https://github.com/grocy/grocy.git
synced 2025-08-21 04:43:32 +00:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
$(function()
|
|
{
|
|
$('.datetimepicker').datetimepicker(
|
|
{
|
|
format: 'YYYY-MM-DD HH:mm:ss',
|
|
showTodayButton: true,
|
|
calendarWeeks: true,
|
|
maxDate: moment()
|
|
});
|
|
});
|