diff options
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); + } } /* |