diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-25 01:17:49 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:44:00 +0200 |
commit | 3fe9f14f10381242a193d91f7dc8ea0307091f8e (patch) | |
tree | 5e4370700b0d6f5230587e63b4916cea348ac3d4 /data/lib/util.js | |
parent | 89f9e8aac15e6572293bada0a27335111d67403e (diff) | |
download | bugzilla-triage-3fe9f14f10381242a193d91f7dc8ea0307091f8e.tar.gz |
Working on cutting down lines from bug-page-mod.js
Diffstat (limited to 'data/lib/util.js')
-rw-r--r-- | data/lib/util.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/data/lib/util.js b/data/lib/util.js index f336a7f..6cbb493 100644 --- a/data/lib/util.js +++ b/data/lib/util.js @@ -124,14 +124,18 @@ function createDeadLink (id, text, parent, callback, params, before, covered, ac }, false); } + locParent.appendChild(newAElem); + if ((before === "br") || (before === true)) { locParent.appendChild(document.createElement("br")); } else if (before === "dash") { locParent.appendChild(document.createTextNode("\u00A0-\u00A0")); } - - locParent.appendChild(newAElem); + else if (before === "parens") { + locParent.appendChild(document.createTextNode(")")); + locParent.insertBefore(document.createTextNode("("), newAElem); + } } /* |