mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
Resize children's height too
This commit is contained in:
parent
089144d986
commit
1f1ea27078
@ -213,6 +213,14 @@ var et2_split = et2_DOMWidget.extend([et2_IResizeable],
|
|||||||
{
|
{
|
||||||
this.left.width(w);
|
this.left.width(w);
|
||||||
this.right.width(w);
|
this.right.width(w);
|
||||||
|
if(this.dock_side == "topDock")
|
||||||
|
{
|
||||||
|
this.right.height(h);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.left.height(h);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}, this);
|
}, this);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user