From 44b8b00106fefcc43843a8fc5aef0f5807d28155 Mon Sep 17 00:00:00 2001 From: Taras Machyshyn Date: Tue, 10 Feb 2015 15:02:02 +0200 Subject: [PATCH] fixed calendar issue in IE --- frontend/client/modules/crm/src/views/calendar/calendar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/client/modules/crm/src/views/calendar/calendar.js b/frontend/client/modules/crm/src/views/calendar/calendar.js index a415b019be..819abcca9a 100644 --- a/frontend/client/modules/crm/src/views/calendar/calendar.js +++ b/frontend/client/modules/crm/src/views/calendar/calendar.js @@ -171,8 +171,8 @@ Espo.define('Crm:Views.Calendar.Calendar', ['View', 'lib!FullCalendar'], functio convertToFcEvents: function (list) { var events = []; list.forEach(function (o) { - event = this.convertToFcEvent(o); - events.push(event) + var event = this.convertToFcEvent(o); + events.push(event); }.bind(this)); return events; },