Files
grocy/public/viewjs/components/datetimepicker.js

12 lines
197 B
JavaScript
Raw Normal View History

2018-04-15 09:41:53 +02:00
$(function()
{
$('.datetimepicker').datetimepicker(
{
format: 'YYYY-MM-DD HH:mm:ss',
showTodayButton: true,
calendarWeeks: true,
2018-04-16 19:11:32 +02:00
maxDate: moment(),
locale: moment.locale('de')
2018-04-15 09:41:53 +02:00
});
});