diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-09-21 11:29:10 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-09-21 11:29:10 +0200 |
commit | c1a5120e976d18072e80a6086ff0a6a8ef83cb88 (patch) | |
tree | 8fd855913382548c107abdae460aea04a6b1e488 /lib/bzpage.js | |
parent | a2f2d22a11b83909de93312856eb3d4c90a68e0b (diff) | |
download | bugzilla-triage-c1a5120e976d18072e80a6086ff0a6a8ef83cb88.tar.gz |
Adding parsed backtraces seems to be functional. Yuhooo! \o/
* rhbzpage.addNewAttachmentRow finally beaten into submission
* util.parseXMLfromString ... it is better to hide this
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r-- | lib/bzpage.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index f386868..269f4fa 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -762,7 +762,6 @@ 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"); |