diff options
author | Marc Schumann <wurblzap@gmail.com> | 2012-05-29 18:27:44 +0200 |
---|---|---|
committer | Marc Schumann <wurblzap@gmail.com> | 2012-05-29 18:27:44 +0200 |
commit | ffe9d282f4252e749550f37b8db6db99f7022528 (patch) | |
tree | 873b734a2ef9777c33f7e66a350935954c0bb87f | |
parent | aba3f550feb4e69d3df9c24097784f1cd94dadf6 (diff) | |
download | bugzilla-ffe9d282f4252e749550f37b8db6db99f7022528.tar.gz bugzilla-ffe9d282f4252e749550f37b8db6db99f7022528.tar.xz |
Bug 758148 - Comment toggling link should use − so that its width stays constant.
r/a=LpSolit
-rw-r--r-- | js/comments.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/comments.js b/js/comments.js index ce61f6ba0..acf5dbf9b 100644 --- a/js/comments.js +++ b/js/comments.js @@ -56,7 +56,7 @@ function collapse_comment(link, comment) { } function expand_comment(link, comment) { - link.innerHTML = "[-]"; + link.innerHTML = "[−]"; YAHOO.util.Dom.removeClass(comment, 'collapsed'); } @@ -114,7 +114,7 @@ function addCollapseLink(count, title) { document.write(' <a href="#" class="bz_collapse_comment"' + ' id="comment_link_' + count + '" onclick="toggle_comment_display(this, ' + count + - '); return false;" title="' + title + '">[-]<\/a> '); + '); return false;" title="' + title + '">[−]<\/a> '); } function goto_add_comments( anchor ){ |