Skip to content

Commit 3fe6e6c

Browse files
authored
Update html.go
1 parent 4225c6c commit 3fe6e6c

File tree

1 file changed

+2
-2
lines changed
  • src/cmd/compile/internal/ssa

1 file changed

+2
-2
lines changed

src/cmd/compile/internal/ssa/html.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -628,10 +628,10 @@ function hideBlock(el) {
628628
var e = es[0];
629629
if (e.style.display === 'block' || e.style.display === '') {
630630
e.style.display = 'none';
631-
el.innerHTML = '+';
631+
el.textContent = '+';
632632
} else {
633633
e.style.display = 'block';
634-
el.innerHTML = '-';
634+
el.textContent = '-';
635635
}
636636
}
637637

0 commit comments

Comments
 (0)