fixed calendar issue in IE

This commit is contained in:
Taras Machyshyn
2015-02-10 15:02:02 +02:00
parent 042575ce6b
commit 44b8b00106
@@ -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;
},