Calendar display

- Fix whole day blocking event titles didn't move into view
This commit is contained in:
Nathan Gray 2015-11-05 17:43:39 +00:00
parent cc2a7f7d64
commit 09abdcb47e

View File

@ -480,7 +480,7 @@ var et2_calendar_daycol = et2_valueWidget.extend([et2_IDetachedDOM, et2_IResizea
// Check each event
this.iterateOver(function(event) {
// Skip whole day events and events missing value
if(!event.options || !event.options.value || event.options.value.whole_day) return;
if(!event.options || !event.options.value || event.options.value.whole_day_on_top) return;
// Reset
event.title.css('top','');