always draw background all the way down to the bottom
This commit is contained in:
parent
8ed96c83ca
commit
dcb567143e
1 changed files with 1 additions and 1 deletions
|
@ -865,7 +865,7 @@ Ox.Calendar = function(options, self) {
|
|||
lineEvents[line].push(event);
|
||||
});
|
||||
self.$content.find('.OxLine').remove();
|
||||
height = lineEvents.length * 16;
|
||||
height = Math.max(lineEvents.length * 16, self.$container.height());
|
||||
self.$background.$element.children().css({height: height + 'px'});
|
||||
self.$content.css({height: height + 'px'});
|
||||
lineEvents.forEach(function(events, line) {
|
||||
|
|
Loading…
Reference in a new issue