Just re-ordering for better readability

This commit is contained in:
Nathan Gray 2013-10-03 12:53:58 +00:00
parent 3d1bdceaac
commit 0c0dc2c943

View File

@ -100,22 +100,24 @@ var et2_dynheight = Class.extend(
var bh = Math.max(0,bmaxBot - bminTop); var bh = Math.max(0,bmaxBot - bminTop);
// Calculate the new height of the inner container // Calculate the new height of the inner container
var w = this.innerNode.width(); var h = Math.max(this.minHeight, oh + ot - it - bh -
this.innerMargin - this.outerMargin);
this.innerNode.height(h);
// Update the width
// Some checking to make sure it doesn't overflow the width when user // Some checking to make sure it doesn't overflow the width when user
// resizes the window // resizes the window
if(w > this.outerNode.width()) var w = this.outerNode.width();
{
w = this.outerNode.width();
}
if (w > $j(window).width()) if (w > $j(window).width())
{ {
// 50px border, totally arbitrary, but we just need to make sure it's inside // 50px border, totally arbitrary, but we just need to make sure it's inside
w = $j(window).width()-50; w = $j(window).width()-50;
} }
var h = Math.max(this.minHeight, oh + ot - it - bh - if(w != this.innerNode.outerWidth())
this.innerMargin - this.outerMargin); {
this.innerNode.height(h); this.innerNode.width(w);
}
// Call the callback function // Call the callback function
if (typeof _callback != "undefined") if (typeof _callback != "undefined")
{ {