summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorMarc Schumann <wurblzap@gmail.com>2012-05-29 18:27:44 +0200
committerMarc Schumann <wurblzap@gmail.com>2012-05-29 18:27:44 +0200
commitffe9d282f4252e749550f37b8db6db99f7022528 (patch)
tree873b734a2ef9777c33f7e66a350935954c0bb87f /js
parentaba3f550feb4e69d3df9c24097784f1cd94dadf6 (diff)
downloadbugzilla-ffe9d282f4252e749550f37b8db6db99f7022528.tar.gz
bugzilla-ffe9d282f4252e749550f37b8db6db99f7022528.tar.xz
Bug 758148 - Comment toggling link should use &minus; so that its width stays constant.
r/a=LpSolit
Diffstat (limited to 'js')
-rw-r--r--js/comments.js4
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 = "[&minus;]";
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 + '">[&minus;]<\/a> ');
}
function goto_add_comments( anchor ){