fixed indention + variable scoping

This commit is contained in:
Matthias Bartelmeß 2012-02-21 21:46:25 +01:00
parent 10cbb485fb
commit eae87fd835
1 changed files with 24 additions and 18 deletions

View File

@ -5829,11 +5829,14 @@ function OUTER(gscope)
var newNumLines = rep.lines.length(); var newNumLines = rep.lines.length();
if (newNumLines < 1) newNumLines = 1; if (newNumLines < 1) newNumLines = 1;
//update height of all current line numbers //update height of all current line numbers
if (currentCallStack && currentCallStack.domClean)
{
var a = sideDivInner.firstChild; var a = sideDivInner.firstChild;
var b = doc.body.firstChild; var b = doc.body.firstChild;
var n = 0; var n = 0;
if (currentCallStack && currentCallStack.domClean)
{
while (a && b) while (a && b)
{ {
if(n > lineNumbersShown) //all updated, break if(n > lineNumbersShown) //all updated, break
@ -5874,8 +5877,10 @@ function OUTER(gscope)
var div = odoc.createElement("DIV"); var div = odoc.createElement("DIV");
//calculate height for new line number //calculate height for new line number
var h = (b.clientHeight || b.offsetHeight); var h = (b.clientHeight || b.offsetHeight);
if (b.nextSibling) if (b.nextSibling)
h = b.nextSibling.offsetTop - b.offsetTop; h = b.nextSibling.offsetTop - b.offsetTop;
if(h) // apply style to div if(h) // apply style to div
div.style.height = h +"px"; div.style.height = h +"px";
@ -5883,6 +5888,7 @@ function OUTER(gscope)
fragment.appendChild(div); fragment.appendChild(div);
b = b.nextSibling; b = b.nextSibling;
} }
container.appendChild(fragment); container.appendChild(fragment);
while (lineNumbersShown > newNumLines) while (lineNumbersShown > newNumLines)
{ {
@ -5891,8 +5897,8 @@ function OUTER(gscope)
} }
} }
} }
}
};
OUTER(this); OUTER(this);