From c8bd6b111433ff323f1ecbfd4d34e61cf399dd40 Mon Sep 17 00:00:00 2001 From: Jonathan Vogt Date: Mon, 25 Jan 2016 23:35:28 +0100 Subject: [PATCH] Prevent flickering when starting --- js/calendar/calendar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/calendar/calendar.js b/js/calendar/calendar.js index 22ca910d..f0178ed1 100644 --- a/js/calendar/calendar.js +++ b/js/calendar/calendar.js @@ -186,9 +186,9 @@ calendar.init = function () { this.updateData(this.updateCalendar.bind(this)); - this.intervalId = setInterval(function () { - this.updateCalendar(this.eventList) - }.bind(this), this.updateInterval); + // this.intervalId = setInterval(function () { + // this.updateCalendar(this.eventList) + // }.bind(this), this.updateInterval); this.dataIntervalId = setInterval(function () { this.updateData(this.updateCalendar.bind(this));