mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 00:58:55 +01:00
Fix refresh while calendar tab is hidden caused events to be minimum height
This commit is contained in:
parent
f01c973324
commit
e4f6b60db9
@ -718,8 +718,12 @@ var et2_calendar_daycol = et2_valueWidget.extend([et2_IDetachedDOM],
|
||||
{
|
||||
columns[c][i].div.css('top', top+'%');
|
||||
columns[c][i].div.css('height', height+'%');
|
||||
// Remove spacing from border
|
||||
var border_diff = columns[c][i].div.outerHeight() - columns[c][i].div.height();
|
||||
// Remove spacing from border, but only if visible or the height will be wrong
|
||||
var border_diff = 0;
|
||||
if(columns[c][i].div.is(':visible'))
|
||||
{
|
||||
border_diff = columns[c][i].div.outerHeight() - columns[c][i].div.height();
|
||||
}
|
||||
columns[c][i].div.css('height',columns[c][i].div.height() - border_diff);
|
||||
// This gives the wrong height
|
||||
//columns[c][i].div.outerHeight(height+'%');
|
||||
|
Loading…
Reference in New Issue
Block a user