diff options
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r-- | lib/bzpage.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index b4891c5..2f4436f 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -695,6 +695,7 @@ BZPage.prototype.getOptionTableCell = function getOptionTableCell(tableId, label label = label.trim().replace(cleanLabelRE,"$1").toLowerCase(); var rows = this.doc.getElementById(tableId).getElementsByTagName("tr"); + console.log("rows.length = " + rows.length); var ourLine = Array.filter(rows, function(row) { var curLabel = row.getElementsByTagName("td")[0].textContent.toLowerCase(); curLabel = curLabel.replace(cleanLabelRE,"$1"); |