(js) Fix freebusy initialization in event editor

pull/14/merge
Francis Lachapelle 2016-12-19 11:05:48 -05:00
parent 1eb378c956
commit 2e9168080c
1 changed files with 3 additions and 3 deletions

View File

@ -622,11 +622,11 @@
_.forEach(this.attendees, function(attendee) {
attendee.image = Component.$gravatar(attendee.email, 32);
});
// Load freebusy of attendees
this.updateFreeBusy();
}
// Load freebusy of attendees
this.updateFreeBusy();
this.selected = false;
};