mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 10:28:31 +02:00
work provided by Chr.Fueller to tackle oversized events in calendar-week-print-pre-view
This commit is contained in:
@ -212,11 +212,12 @@ dd.getWH = function(d_o)
|
||||
d_o.h = dd.getDivH(d_o);
|
||||
if(d_o.css)
|
||||
{
|
||||
d_o.css.width = d_o.w + dd.px;
|
||||
// dont set the width at the beginning
|
||||
//d_o.css.width = d_o.w + dd.px;
|
||||
d_o.css.height = d_o.h + dd.px;
|
||||
d_o.dw = dd.getDivW(d_o)-d_o.w;
|
||||
d_o.dh = dd.getDivH(d_o)-d_o.h;
|
||||
d_o.css.width = (d_o.w-d_o.dw) + dd.px;
|
||||
//d_o.css.width = (d_o.w-d_o.dw) + dd.px;
|
||||
d_o.css.height = (d_o.h-d_o.dh) + dd.px;
|
||||
}
|
||||
else d_o.dw = d_o.dh = 0;
|
||||
|
Reference in New Issue
Block a user