Resize children's height too

This commit is contained in:
Nathan Gray 2013-11-20 00:03:58 +00:00
parent 089144d986
commit 1f1ea27078

View File

@ -213,6 +213,14 @@ var et2_split = et2_DOMWidget.extend([et2_IResizeable],
{
this.left.width(w);
this.right.width(w);
if(this.dock_side == "topDock")
{
this.right.height(h);
}
else
{
this.left.height(h);
}
}
}, this);
}