Commit ffe9d282 authored by Marc Schumann's avatar Marc Schumann

Bug 758148 - Comment toggling link should use − so that its width stays constant.

r/a=LpSolit
parent aba3f550
......@@ -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 + '">[&minus;]<\/a> ');
}
function goto_add_comments( anchor ){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment