aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-09-10 18:01:31 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-09-10 18:01:31 +0200
commit2a7171fb5cd16ae361916dd0dd97d566f970a6df (patch)
tree36415eb0f31773c8e7c6de78a2e83f7e9aaab5f2
parent6e26957078c4469dc00a41910c1311f397e39f26 (diff)
downloadbugzilla-triage-2a7171fb5cd16ae361916dd0dd97d566f970a6df.tar.gz
Add console.log to show what's going on in getOptionTableCell
-rw-r--r--lib/bzpage.js1
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");