From da421494177a49639f2cfa57018e6c980b89e79b Mon Sep 17 00:00:00 2001 From: Timo Schwertfeger Date: Mon, 27 Jul 2015 13:59:23 +0200 Subject: [PATCH] Update main.js added third colon to display the time like hh:mm:ss --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index 0a51f0b00a..3157c05e5e 100755 --- a/js/main.js +++ b/js/main.js @@ -83,7 +83,7 @@ jQuery(document).ready(function($) { date = date[0] + ' ' + date[1] + ' ' + date[2] + ' ' + date[3]; $('.date').html(date); - $('.time').html(now.format('HH') + ':' + now.format('mm') + ''+now.format('ss')+''); + $('.time').html(now.format('HH') + ':' + now.format('mm') + '' + ':' + now.format('ss')+''); setTimeout(function() { updateTime();