From 29dff917a2c121e3cbbc718871e7b73d8e6183c3 Mon Sep 17 00:00:00 2001 From: dasquiddi Date: Tue, 12 Jan 2016 16:23:18 +0100 Subject: [PATCH] Timeformat from HH:MMSS to HH:MM:SS --- js/time/time.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/time/time.js b/js/time/time.js index f2a5a28691..a793470821 100644 --- a/js/time/time.js +++ b/js/time/time.js @@ -15,7 +15,7 @@ time.updateTime = function () { _date = _now.format('dddd, LL'); $(this.dateLocation).html(_date); - $(this.timeLocation).html(_now.format(this._timeFormat+':mm[]ss[]')); + $(this.timeLocation).html(_now.format(this._timeFormat+':mm[]:ss[]')); } @@ -31,4 +31,4 @@ time.init = function () { this.updateTime(); }.bind(this), 1000); -} \ No newline at end of file +}