Swap timestamp format to ISO and 24h clock.

This commit is contained in:
Daniele Sluijters
2014-03-13 11:49:00 +01:00
parent c4d1dd3596
commit ce4c7a26cd

View File

@@ -16,7 +16,7 @@ jQuery(function ($) {
if (result == '') { if (result == '') {
tstamp.text('Unknown'); tstamp.text('Unknown');
} else { } else {
tstamp.text(localise_timestamp(tstring).format('LLLL')); tstamp.text(localise_timestamp(tstring).format('MMM DD YYYY - HH:mm:ss'));
}; };
}); });