diff --git a/src/public/javascripts/services/utils.js b/src/public/javascripts/services/utils.js index 95ccc2599..527b052ef 100644 --- a/src/public/javascripts/services/utils.js +++ b/src/public/javascripts/services/utils.js @@ -24,7 +24,10 @@ function formatTimeWithSeconds(date) { } function formatDate(date) { - return padNum(date.getDate()) + ". " + padNum(date.getMonth() + 1) + ". " + date.getFullYear(); +// return padNum(date.getDate()) + ". " + padNum(date.getMonth() + 1) + ". " + date.getFullYear(); + // instead of european format we'll just use ISO as that's pretty unambiguous + + return formatDateISO(date); } function formatDateISO(date) {