1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-24 22:33:16 +00:00

Fix bug with millisecond 0XXX date format

This commit is contained in:
Jeremy Ruston 2019-11-18 13:22:10 +00:00
parent e4eaae14fa
commit cd8ab13b55

View File

@ -280,7 +280,7 @@ exports.formatDateString = function(date,template) {
return $tw.utils.pad(date.getSeconds()); return $tw.utils.pad(date.getSeconds());
}], }],
[/^0XXX/, function() { [/^0XXX/, function() {
return $tw.utils.pad(date.getMilliseconds()); return $tw.utils.pad(date.getMilliseconds(),4);
}], }],
[/^0DD/, function() { [/^0DD/, function() {
return $tw.utils.pad(date.getDate()); return $tw.utils.pad(date.getDate());