From a769fe5f542a42db6d3b7f6abdb24c56579675b7 Mon Sep 17 00:00:00 2001 From: Kasalehlia <kasalehlia@clonejo.de> Date: Tue, 26 Jan 2016 13:25:17 +0100 Subject: [PATCH] fixed #1 --- modules/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/calendar.js b/modules/calendar.js index fd985ca..b9428c0 100644 --- a/modules/calendar.js +++ b/modules/calendar.js @@ -75,7 +75,7 @@ function getData(count, cb) { ev.startRendered = pad(start.getHours(),2)+':'+pad(start.getMinutes(),2); } else { ev.startRendered = DOW[start.getDay()]+', '+pad(start.getDate(),2) - +'.'+pad(start.getMonth(),2)+'. '+pad(start.getHours(),2) + +'.'+pad(start.getMonth()+1,2)+'. '+pad(start.getHours(),2) +':'+pad(start.getMinutes(),2); } var end = new Date(ev.end*1000); -- GitLab