Extend tiddler modification and creation dates to include milliseconds

Fixes #200
print-window-tiddler
Jeremy Ruston 2013-11-07 20:04:54 +00:00
rodzic 69888e6701
commit bfe3d3ee5a
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -238,7 +238,8 @@ $tw.utils.stringifyDate = function(value) {
$tw.utils.pad(value.getUTCMonth() + 1) +
$tw.utils.pad(value.getUTCDate()) +
$tw.utils.pad(value.getUTCHours()) +
$tw.utils.pad(value.getUTCMinutes());
$tw.utils.pad(value.getUTCMinutes()) +
$tw.utils.pad(value.getUTCMilliseconds(),3);
};
// Parse a date from a UTC YYYYMMDDHHMMSSMMM format string