Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 077ac02

Browse files
author
mikesamuel@gmail.com
committed
logging for IE
1 parent 6f4bf70 commit 077ac02

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

js-modules/numberLines.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,14 @@ function numberLines(node, opt_startLineNum) {
110110
for (var parent; (parent = split.parentNode);) { split = parent; }
111111
// Put it on the list of lines for later processing.
112112
listItems.push(split);
113+
console.log('pushing listItem length=' + listItems.length);
113114
}
114115

115116
// Split lines while there are lines left to split.
116117
for (var i = 0; // Number of lines that have been split so far.
117118
i < listItems.length; // length updated by breakAfter calls.
118119
++i) {
120+
console.log('walking list item ' + i);
119121
walk(listItems[i]);
120122
}
121123

0 commit comments

Comments
 (0)