Improved date display for dates of today and no time

Instead of the hours since midnight now just "Today" will be shown
This commit is contained in:
Bernd Bestel
2019-07-06 17:19:28 +02:00
parent df529c3c0b
commit c6c10c87e4
7 changed files with 18 additions and 5 deletions

View File

@@ -235,8 +235,9 @@ Grocy.Components.DateTimePicker.GetInputElement().on('keyup', function(e)
Grocy.Components.DateTimePicker.GetInputElement().on('input', function(e)
{
$('#datetimepicker-timeago').text($.timeago(Grocy.Components.DateTimePicker.GetValue()));
$('#datetimepicker-timeago').attr("datetime", Grocy.Components.DateTimePicker.GetValue());
EmptyElementWhenMatches('#datetimepicker-timeago', __t('timeago_nan'));
RefreshContextualTimeago();
});
$('.datetimepicker').on('update.datetimepicker', function(e)