diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-09-20 18:40:34 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-09-20 18:40:34 +0200 |
commit | a2f2d22a11b83909de93312856eb3d4c90a68e0b (patch) | |
tree | 8668fc2a95e9928be6ca02c647ab2592d0affdef /lib/bzpage.js | |
parent | 7ced539be325398fc7ecace31201bf89e6335f48 (diff) | |
download | bugzilla-triage-a2f2d22a11b83909de93312856eb3d4c90a68e0b.tar.gz |
Make showing parsed backtrace at least working
* Fill always this.parsedAttachments parameter with attachments
with parsed backtraces
* Add a ton of Javadocs to rhbzpage methods
* The window with parsed backtrace should be on the top
* addNewAttachmentRow is called but made ineffective
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r-- | lib/bzpage.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index 2278209..f386868 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -418,8 +418,9 @@ BZPage.prototype.addToCommentsDropdown = function addToCommentsDropdown (pkg, cm */ BZPage.prototype.createDeadLink = function createDeadLink (id, text, parent, callback, params, breakBefore, accesskey) { var that = this; - var newAElem = this.doc.createElement("a"); params = util.valToArray(params); + + var newAElem = this.doc.createElement("a"); newAElem.setAttribute("id", id); if (accesskey) { newAElem.setAttribute("accesskey", accesskey); |