Changed the Weekday to a 3 letter format

master
Thierry Degeling 2014-08-02 01:21:01 +02:00
parent 4c22e7abac
commit 960b473b94
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ function reloadPage() {
function refreshTime() {
$('.time').text( moment().format('HH:mm:ss') );
$('.date').text( moment().format('dddd, Do \of MMMM') );
$('.date').text( moment().format('ddd, Do \of MMMM') );
}