do our additional calculations when resize() is called by or in a parent
Usage
function () (view source)
this.inherited(arguments);
// FIXME: // the 10 comes from the difference between the contentBox and calculated height// because of badding and border extents. this shouldn't be done this way, a theme change will // break it: but we also don't want to run getComputedStyle or dojo.coords() every time resize() // is fired.var offset = ((this._contentBox.h) - (dojo.style(this.titleNode,"height")))-10;
this.bodyWrapper.style.height = Math.abs(offset) + "px";