diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-07 19:40:24 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:44:43 +0200 |
commit | 26fc9ed67392805abcfeec21f0007e5b3c160708 (patch) | |
tree | b75ffc7680ab254673b19b7f4fe3304b5c9687ca /data | |
parent | 67ab098bf0ad332c651e79919f728e4f276ed918 (diff) | |
download | bugzilla-triage-26fc9ed67392805abcfeec21f0007e5b3c160708.tar.gz |
Don't create new elements, just add relational <link>s.
Diffstat (limited to 'data')
-rw-r--r-- | data/lib/jumpNextBug.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/jumpNextBug.js b/data/lib/jumpNextBug.js index 8f64b0d..2e097a3 100644 --- a/data/lib/jumpNextBug.js +++ b/data/lib/jumpNextBug.js @@ -35,7 +35,7 @@ labelToRelation[labelText].href = elem.getAttribute("href"); }; }); - console.log("labelToRelation = " + labelToRelation.toSource()); + for (var key in labelToRelation) { if (labelToRelation.hasOwnProperty(key)) { relation = labelToRelation[key]; |