diff options
author | Mark Longair <mhl@pobox.com> | 2012-11-20 18:24:30 +0000 |
---|---|---|
committer | Mark Longair <mhl@pobox.com> | 2012-11-20 18:27:57 +0000 |
commit | d7a43e068987311398ff48459fe3d9db8a1ec821 (patch) | |
tree | 33d7fd94482c875659f4364d1babc36e70e90477 /www/js/mobile.js | |
parent | f78eb58631afbafea6c27aa03650b51205bebc8c (diff) |
Use '/' as the separator in separating day-month-year dates
Diffstat (limited to 'www/js/mobile.js')
-rw-r--r-- | www/js/mobile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/mobile.js b/www/js/mobile.js index 1e93847..09c9479 100644 --- a/www/js/mobile.js +++ b/www/js/mobile.js @@ -573,7 +573,7 @@ function display_saved_reports() { var date; if ( r[i].time ) { var date_o = new Date( r[i].time ); - date = date_o.getDate() + '-' + ( date_o.getMonth() + 1 ) + '-' + date_o.getFullYear(); + date = date_o.getDate() + '/' + ( date_o.getMonth() + 1 ) + '/' + date_o.getFullYear(); date = date + ' ' + date_o.getHours() + ':' + date_o.getMinutes(); } else { date = ''; |